Difference between revisions of "User:Seemann/monobook.js"

From GTAMods Wiki
Jump to navigation Jump to search
Line 1: Line 1:
collapseCaption = "Hide";
+
function Test()
expandCaption = "Open";
+
{
 +
    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 );