28 lines
No EOL
621 B
HTML
28 lines
No EOL
621 B
HTML
#HTTP_HEADER{Content-Type: application/javascript; charset=#CHARSET}
|
|
|
|
function padd_toggle(classname,value) {
|
|
jQuery(classname).focus(function() {
|
|
if (value == jQuery(classname).val()) {
|
|
jQuery(this).val('');
|
|
}
|
|
});
|
|
jQuery(classname).blur(function() {
|
|
if ('' == jQuery(classname).val()) {
|
|
jQuery(this).val(value);
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
jQuery(document).ready(function() {
|
|
//jQuery.noConflict();
|
|
|
|
|
|
|
|
jQuery('input#recherche').val('terme à rechercher');
|
|
padd_toggle('input#recherche','terme à rechercher');
|
|
jQuery('div.formulaire_recherche form').click(function () {
|
|
jQuery('input#recherche').focus();
|
|
});
|
|
|
|
}); |