Hi there jelly46,
Try it like this...
Code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>untitled document</title>
<style>
.hide {
display:none;
}
</style>
<script>
(function() {
'use strict';
function init(){
var myurl='http://www.google.com';
document.getElementById('nxt').className='';
document.getElementById('nxt').onclick=function() {
location.href=myurl;
}
}
window.addEventListener?
window.addEventListener('load',init,false):
window.attachEvent('onload',init);
})();
</script>
</head>
<body>
<button id="nxt" class="hide">Next</button>
</body>
</html>
coothead
Bookmarks