Commit 40ac7167 by Saliya Randunu

S12518726 # Client - Incoming Issues (raised by Client) #Bad tab sequence after Job Title

parent 5cd01115
...@@ -117,14 +117,18 @@ ...@@ -117,14 +117,18 @@
} }
}); });
$(".create-job").find('.main-pack-type a,input,select,textarea').not(".level_radio").each( function (i) $(".create-job").find('input,select,textarea').each( function (i)
{ {
if($(this).hasClass('type_radio')) if($(this).hasClass('type_radio'))
{ {
console.log($(this).attr('type'));
$(this).next('label').attr('tabindex', i + 1); $(this).next('label').attr('tabindex', i + 1);
}else }
else if($(this).hasClass('level_radio'))
{
$(this).parent('a').attr('tabindex', i + 1);
}
else
{ {
$(this).attr('tabindex', i + 1); $(this).attr('tabindex', i + 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment