spip_nursit/plugins/dist/themes/zpip-1/Brominerary/main-loading.js.html
2023-06-01 17:30:12 +02:00

22 lines
No EOL
458 B
HTML

function paddToggle(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() {
paddToggle("input#recherche", "<:info_rechercher:>");
jQuery("div.search form").click(function () {
jQuery("input#recherche").focus();
});
});