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
<ul> | |
<li>AL<li> | |
<li>AK<li> | |
<li>AZ<li> | |
<li>AR<li> | |
<li>CA<li> | |
<li>CO<li> | |
<li>CT<li> | |
<li>DE<li> | |
<li>DC<li> |
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
$('form.form-search input').focus(function() { | |
if (this.value == this.defaultValue){ | |
this.value = ''; | |
} | |
if(this.value != this.defaultValue){ | |
this.select(); | |
} | |
}); | |
$('form.form-search input').blur(function() { | |
if ($.trim(this.value) == ''){ |
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
function z_masterfit_ui_customized_menu() { | |
$items = array(); | |
$items['admin/flush-cache'] = array( | |
'type' => MENU_NORMAL_ITEM, | |
'title' => t('Flush the cache'), | |
'description' => 'Flush all website caches to make sure it updates to relect '. | |
'your recent changes.', | |
'page callback' => 'flush_cache_custom_callback', | |
'access callback' => user_access('flush cache'), |
NewerOlder