how can i display a message(your cant register) when a link(<a href="#" onclick="show(' me')">Register</a>) is clicked below is my code
Code:
<html>
<head>
<title></title>
<script type="text/javascript" charset="utf-8">
function show(div){
document.getElementById(div).style.display='';
}
</script>
</head>
<body>
<a href="#" onclick="show('me')">Register</a>
<body>
</html>
Comment