Side navigation
Ticket #3649: tabindex.html
File tabindex.html, 0.5 KB (added by jollytoad, November 25, 2008 11:46AM UTC)
Test page
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
jQuery(function($) {
$('div.a').attr('tabindex',0);
$('div.b').each(function() { this.tabIndex = 0; });
});
</script>
<style>
:focus { background-color: yellow; }
</style>
</head>
<body>
<div class="a">One</div>
<div class="a">Two</div>
<div tabindex="-1">Three</div>
<div class="b">Four</div>
<div class="b">Five</div>
</body>
</html>
Download in other formats:
Original Format
File tabindex.html, 0.5 KB (added by jollytoad, November 25, 2008 11:46AM UTC)
Test page
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
jQuery(function($) {
$('div.a').attr('tabindex',0);
$('div.b').each(function() { this.tabIndex = 0; });
});
</script>
<style>
:focus { background-color: yellow; }
</style>
</head>
<body>
<div class="a">One</div>
<div class="a">Two</div>
<div tabindex="-1">Three</div>
<div class="b">Four</div>
<div class="b">Five</div>
</body>
</html>