Note that there are some explanatory texts on larger screens.

plurals
  1. POjquery tooltip issue in IE8
    primarykey
    data
    text
    <p>I have linkbuttons inside table columns and want to display tooltip even if it is disabled..This worked fine in FF and Chrome but not in IE8 as IE8 disabled elements don't receive any events I tried this workaround</p> <p>I create a span outside the linkbutton if it is disabled and find the parent of the linkbutton i.e table cell.....then clear the table cells contents,add the span to it and then add the link button to the span and apply the tooltip to the span.</p> <p>but again IE8 applies the jquery generated code to the table cell as well as the span and so my tooltip generates 2 times making it appear bolder.......I don't want this.this works fine in FF and chrome</p> <p>I am using the simple tooltip jquery plugin which you can find here</p> <p><a href="http://dev.mariusilie.net/content/simple-tooltip-jquery-plugin" rel="nofollow noreferrer">http://dev.mariusilie.net/content/simple-tooltip-jquery-plugin</a></p> <p>and here my code</p> <pre><code>$(document).ready(function (){ var $elems=$(".with-tooltip"); $elems.each(function(){ var state=$(this).attr("disabled"); if(state==true || state=="disabled") { var $child=$(this); var newElem= $(document.createElement('span')); newElem.attr("title","privacy requested by owner"); var parentElement=$child.parent(); parentElement.empty(); newElem.append($child); newElem.simpletooltip(); parentElement.append(newElem); } }); }); </code></pre> <p>you can view this problem at <strong>www.sandesh4u.com/default2.aspx</strong></p> <p>if you do a view source you will see what is the problem..</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload