Hey I really don't under stand why my button keeps disappearing on me, I should also mention that I haven't done any javascript in like 2 months so I may be a little rusty.
<html>
<head></head>
<body>
<script language = "JavaScript">
function Count(){
var x = "98";
x--;
var y = document.write(x + "<p> Bottles of beer on the wall </p>" + x + "<p> bottles of beer You take one down pass it around</p>" + x-- + "<p> of beer on the wall!</p>");
document.getElementById('text').innerHTML = y;
}
</script>
<form>
<input type="button" value="Count" onClick="Count()">
</form>
<p id="text">99 Bottles of beer on the wall 99 Bottles of beer you take one down pass it around 98 bottles of beer on the wall!</p>
</body>
</html>