Jump to content

User:Ruud Koot/scripts/common.js

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
 function addItemToToolbox( caption, id, functionname ) {

     var item = document.createElement( "li" );
         item . setAttribute( "id", id );

     var link = document.createElement( "a" );
         link . setAttribute( "href", "javascript:" + functionname + "();" );
         link . appendChild( document . createTextNode( caption ) );

         item . appendChild( link );

     document . getElementById( "p-tb" ) . getElementsByTagName( "ul" )[ 0 ] . appendChild( item );
 }

 function addLinkToToolbox( caption, id, linktarget ) {

     var item = document.createElement( "li" );
         item . setAttribute( "id", id );

     var link = document.createElement( "a" );
         link . setAttribute( "href", linktarget );
         link . appendChild( document . createTextNode( caption ) );

         item . appendChild( link );

     document . getElementById( "p-tb" ) . getElementsByTagName( "ul" )[ 0 ] . appendChild( item );
 }