Hello
How is it possible on a multi-field form to add a tabindex?
Thanks for help
Corinne
How is it possible on a multi-field form to add a tabindex?
Thanks for help
Corinne
<script type="text/javascript">
index = 1;
$(".left input").each(function() {
$(this).attr('tabindex', index);
index = index +2;
});
index = 2;
$(".right input").each(function() {
$(this).attr('tabindex', index);
index = index +2;
});
$(".wide textarea").each(function() {
$(this).attr('tabindex', index);
index = index + 1;
});
$(".wide input").each(function() {
$(this).attr('tabindex', index);
index = index + 1;
});
</script>