The logic baked into the linkselect plugin <http://www.givainc.com/
labs/linkselect_jquery_plugin.htm> for avoiding the options container
from being cropped by the right hand edge of the page fails if there
is no title assigned to the select.

I’m writing to share a change to fix it.

Modified snippet from uncompressed jquery.linkselect.js:

// adjust to the left by subtracting the list width and then adding
the width of the title (which will cover up the anchor text)
pos.left = (pos.left - $container.outerWidth()) + ($title.outerWidth()
|| $a.outerWidth());

Reply via email to