Wednesday, November 12th, 2008
I was making linkage buttons for this site a few mins ago…and found out I had a stack of buttons I made ages ago which I gave out for free on my site. Well…I’m going to repost them all here if anyone wants them. FREE BUTTONS…
Tags: button, freebies, update
Posted in free stuff, sitely | 1 Comment »
Thursday, July 3rd, 2008
Change the page’s background with the click on a button! Let the visitor decide what colour to read on:P
Code
Paste between head tags:
<SCRIPT LANGUAGE="JavaScript">
<!--
function changeColor(hexNumber)
{
document.body.style.background=hexNumber
}
// -->
</script>
Paste in body:
<form><input onclick="changeColor('red');" type="BUTTON" value="Red" /><input onclick="changeColor('blue');" type="BUTTON" value="Blue" /><input onclick="changeColor('yellow');" type="BUTTON"…
Tags: button, javascript
Posted in Uncategorized | No Comments »