javascript , , . , html :
<html>
<head>
<script type="text/javascript">
function check(){
var errorFields = document.getElementById('errorFields');
errorFields.style.display = 'block';
}
</script>
</head>
<body>
<div id="errorFields" style="border: 1px solid red; height: 300px; width: 300px; display: none;"></div>
<input type="button" name="join" value="Join" onclick="check()" />
</body>
</html>
. , , , check(), , .