rendered paste body<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#theinput").focus();
$('#theinput').blur(function() {
$(this).focus();
});
})
</script>
<title>jsdene</title>
</head>
<body>
<form name="formname">
<input name="inputname" type="text" id="theinput" />
</form>
</body>
</html>