spip_nursit/plugins/dist/themes/zpip-1/Californiumite/main-loading.js.html

28 lines
621 B
HTML
Raw Permalink Normal View History

2023-06-01 15:30:12 +00:00
#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();
});
});