Difference between revisions of "User:Seemann/monobook.js"
Jump to navigation
Jump to search
| Line 1: | Line 1: | ||
| − | + | function Test() | |
| − | + | { | |
| + | var s = document.getElementById( "searchInput" ); | ||
| + | if (!s) { | ||
| + | return false; | ||
| + | }; | ||
| + | |||
| + | s.setAttribute( "title", "sss"); | ||
| + | |||
| + | }; | ||
| + | |||
| + | addOnloadHook( Test ); | ||
Revision as of 19:24, 28 January 2009
function Test()
{
var s = document.getElementById( "searchInput" );
if (!s) {
return false;
};
s.setAttribute( "title", "sss");
};
addOnloadHook( Test );