home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 116
/
FreelogNo116-JuilletSeptembre2013.iso
/
Musique
/
amarok
/
amarok-x86-setup-2.7.0-1.exe
/
share
/
apps
/
plasma
/
dashboard
/
button
/
genericButton.js
Wrap
Text File
|
2013-04-28
|
229b
|
8 lines
function createGenericButton(placeElement,buttonText,clickHandler) {
var b = document.createElement("button");
b.appendChild(document.createTextNode(buttonText));
b.onclick = clickHandler;
placeElement.appendChild(b);
}