Jquery Ui tooltip shows only one word -
Jquery Ui tooltip shows only one word -
i using jqueryui display tool tip image. see first word in tooltip. may issue? withe below code see tool tip "high" instead of "high priority".
return "<img title=high priority src=@url.content(links.content.images.high_png) />";
you missing quotes around title
, src
attributes.
change this
return "<img title=high priority src=@url.content(links.content.images.high_png) />";
to this
return "<img title='high priority' src='@url.content(links.content.images.high_png)' />";
jquery jquery-ui tooltip
Comments
Post a Comment