So Ive got a jQuery UI slider, and I am using it in HTML5 fullscreen mode on the latest Chrome browser.
When the user clicks and drags the slider handle, because jQuery UI draws the slider handle as an <a>
tag with href="#"
, Chrome displays the link #
in its "status bar" at the bottom of the fullscreen (just as it does with when you hover over links, a little status bar appears at the bottom of the browser window).
This is ruining my fullscreen experience.
Is there anyway of stopping Chrome from doing this specifically just for that slider tag, or any link with a href of #
? It would be useful to still display this information for other links.
Failing this, is there anyway of getting jQuery to draw sliders as <div>
tags instead of <a>
tags?
Finally, (just because I am curious) why would the overlords on the jQuery UI team divine that it would be wiser to use <a>
tags in this scenario than <div>
tags?