This is probably very simple, but could somebody tell me how to get the cursor blinking on a text box on page load?
The Simple and easiest way to achieve this
$('#button').on('click', function () { $('.form-group input[type="text"]').attr('autofocus', 'true'); });