I have the following jQuery line:
$('#newStep2 input#name').focus().css('background','Red');
Where I am trying to set the focus of a textbox (#name). I am only setting the background to debug to make sure it works.
Well, the background turns red, but the input is not receiving the focus. Um?
EDIT
HTML, per request:
 <fieldset id="newStep2">
    <h3>2. Name It</h3>            
    <label class="scrollTo">Name:</label>
    <input type="text" name="campaign.name" id="name" />
    <p class="step"><a href="javascript:" class="but_next_step">
         Update and Continue</a></p>
 </fieldset>