All pastes #2116398 Raw Edit

Untitled

public text v1 · immutable
#2116398 ·published 2012-02-10 14:35 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="jquery.js"></script>
	<script>
		$(document).ready(function(){
			$('#theinput').blur(function() {
			  $(this).focus();
			});
		})
	</script>
    <title>jsdene</title>
</head>
<body onload="document.formname.inputname.focus();">
<form name="formname">
    <input name="inputname" type="text" id="theinput" />
</form>
</body>
</html>