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

Popular posts from this blog

formatting - SAS SQL Datepart function returning odd values -

c++ - Apple Mach-O Linker Error(Duplicate Symbols For Architecture armv7) -

php - Yii 2: Unable to find a class into the extension 'yii2-admin' -