This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$url='domain.com/newyork/en/home/welcome-to-our-website'; | |
$parts=explode('/',$url); | |
$domain=''; | |
$location=''; | |
$language=''; | |
$page=''; | |
$article=''; | |
switch(count($parts)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void doSearchButton(View v) | |
{ | |
Dialog alert = new Dialog(SearchTabActivity.this); | |
alert.setContentView(R.layout.search_filter); | |
alert.setTitle("Filter Search Options"); | |
alert.setCancelable(true); | |
Button butt=(Button)alert.findViewById(R.id.continueButton); | |
butt.setOnClickListener(new OnClickListener() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() | |
{ | |
$('.aboutNav img').click(function() | |
{ | |
var title=$(this).attr('title'); | |
$('.contentAbout div').fadeOut(500,function() | |
{ | |
alert('faded'); | |
$('#'+title).fadeIn(500); | |
}); |
NewerOlder