Hey everybody I want to let you know that I have undertaken the grueling task of getting the heck away from WordPress. I was so sick of the problems and updates I had to do all the time. I am now using my ezbloo system and I am integrating all my old posts into the new system. It sucks, but in the end, I will save bundles of time. I needed to keep things simple and that is why I created ezbloo. I'll have more on this later for you guys after I am done with the total integration of my old posts here. So if you are looking for a post and need it faster, shoot me an email and I will make it a priority. [email protected]

Here is a little JavaScript true or false script that you can have some fun with. You can even develop further intricate programs off of this little script here. Enjoy!



<html>
<head>
<title>Quiz</title>
</head>
<body>
<h1>Quiz</h1>
<div id="question">True or False: The sky is blue?</div>
<button onclick="truee()">True</button>
<button onclick="falsee()">False</button>
<script>
function truee(){
document.getElementById('question').innerHTML="That is correct";
document.getElementById('question').style.color="green";
document.getElementById('question').style.textTransform="uppercase";
}

function falsee(){
document.getElementById('question').innerHTML="That is not correct";
document.getElementById('question').style.color="red";
document.getElementById('question').style.textTransform="uppercase";
}
</script>
</body>
</html>