All pastes #2116399 Raw Edit

Untitled

public text v1 · immutable
#2116399 ·published 2012-02-10 14:38 UTC
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>