Antony Scott

453
reputation
195 views

Registered User

name Antony Scott
member for 10 months
seen Dec 11 at 14:52
website
location UK
age 37
Software Developer at www.bybox.com
Nov
2
accepted forcing a jQuery ready block to run after all other ready blocks
Nov
2
answered forcing a jQuery ready block to run after all other ready blocks
Oct
10
comment forcing a jQuery ready block to run after all other ready blocks
Thanks, I'd sort of got the same solution. I've gone for having an OnLoad() function in my page, with this in the master ... <script type="text/javascript"> $(document).ready(function() { if (typeof (OnLoad) != "undefined") { OnLoad(); } $("input[type='text']:enabled:first", document.forms[0]).focus().select(); }); </script>
Oct
10
asked forcing a jQuery ready block to run after all other ready blocks