Created
June 30, 2011 16:29
-
-
Save notbrain/1056595 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// prevent tabbing from moving the slides around | |
// intercept with preventDefault and tab back to field with initial focus class based on current slide # | |
$(".tabBackToInitialFocus").keydown(function(event){ | |
if(event.keyCode == 9) { // tab key | |
event.preventDefault(); | |
// currentSlideNumber is set after each navigation action (click on "Next"/"Back" buttons, etc) | |
$(".initialFocus" + currentSlideNumber).select(); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- ... --> | |
<dt>Slide 2</dt> | |
<dd> | |
<h2>Profile - Step 1 of 4</h2> | |
<div class="container section"> | |
<div class="editCompanyFormWrap column1" style=""> | |
<div class="formrow"> | |
<label for="cname">Company Name </label> | |
<input type="text" name="cname" class="text initialFocus2" value="" /> | |
</div> | |
<div class="formrow"> | |
<label for="">Company URL</label> | |
<input type="text" name="cwebsite" class="text" value="" /> | |
</div> | |
<div class="formrow"> | |
<label for="">Careers URL</label> | |
<!-- Without intercept tabbing from here would throw the slide into mis-alignment, | |
showing the next slide partially --> | |
<input type="text" name="url_career_page" class="text tabBackToInitialFocus" value="" /> | |
</div> | |
</div> | |
</div> | |
</dd> | |
<!-- ... --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment