javiertoledo / bootstrap-rating-input

Another plugin that eases the generation of rating stars for jQuery and Bootstrap
MIT License
319 stars 155 forks source link

Star ratings do not respond to tab inputs #59

Open verhey opened 7 years ago

verhey commented 7 years ago

Star ratings do not respond to tab inputs, rendering the output inaccessible for those with mobility disabilities/those that have trouble using a mouse.

mikeploeger commented 7 years ago

Just add "tabindex" to each star field fixes this.

mikeploeger commented 7 years ago

Heres the full code:

// Render rating icons for (var i = options.min; i <= options.max; i++) { $ratingEl.append('<i class="' + options.iconLib + '" data-value="' + i + '" tabindex="0"></i>'); }

javiertoledo commented 6 years ago

Thanks for the tip, PRs are appreciated! :-D

I'll eventually fix that if I find the time, but sending a PR will speed up the process..