This is probably very simple, but could somebody tell me how to get the cursor blinking on a text box on page load?
The line $('#myTextBox').focus() alone won't put the cursor in the text box, instead use:
$('#myTextBox').focus()
$('#myTextBox:text:visible:first').focus();