Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Solved] qtip-1.0.0 and IE8 problem
29th September, 15:26
Post: #1
[Solved] qtip-1.0.0 and IE8 problem
hi,

i am using asp.net 3.5 and have some checkboxes which also display a qtip callout when hovered over.

this worked very well until you browse using IE 8.

when i hover over the checkboxes now - the checkbox description disappears (but the callout still shows).
As you can see in my attachement.

the code i use to initialise qtip is below:

JS Code
function InitializeQtip() {
                $('div.checkBoxDiv td span[title]').qtip({
                    position: {
                        corner: {
                            target: 'topLeft',
                            tooltip: 'bottomLeft'
                        }
                    },
                    style: {
                        'font-size': 12,
                        name: 'green',
                        padding: '7px 13px',
                        width: {
                            max: 210,
                            min: 0
                        },
                        tip: true
                    }
                });
            }
 
$(document).ready(function() {
                InitializeQtip();
            });


   
Find all posts by this user
Quote this message in a reply
30th September, 13:51
Post: #2
RE: qtip-1.0.0 and IE8 problem
anyone?

here is the html, where the description of the checkbox disapears:

HTML Code
<table id="ctl00_pageBody_trusteeCheckBoxListPartOne" class="checkBoxList" border="0">
<tr>
<td>
   <span title="A trustee chosen by the members of an occupational pension scheme.">
      <input id="ctl00_pageBody_trusteeCheckBoxListPartOne_0" type="checkbox" name="ctl00$pageBody$trusteeCheckBoxListPartOne$0" />
      <label for="ctl00_pageBody_trusteeCheckBoxListPartOne_0">Member nominated trustee</label>
   </span>
</td>
</tr>
Find all posts by this user
Quote this message in a reply
3rd October, 17:24
Post: #3
RE: qtip-1.0.0 and IE8 problem
Hmmm can't see why this would be occurring, the checkbox just disappears completely? Have you tried using the developer console to see if it's display property is still set to inline/block and not to none?

Craig Thompson
Web Developer / Designer
Craigsworks
http://www.craigsworks.com
Visit this user's website Find all posts by this user
Quote this message in a reply
4th October, 07:57
Post: #4
RE: qtip-1.0.0 and IE8 problem
(3rd October 17:24)Craig Wrote:  Hmmm can't see why this would be occurring, the checkbox just disappears completely? Have you tried using the developer console to see if it's display property is still set to inline/block and not to none?

hi,

i fixed it by removing one line of css!

.myDiv label {
float:left;
}

this float left was somehow interacting with the jquery and ie8 - to hide the text on the label?
when i removed it it worked!
Find all posts by this user
Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  [Solved] Ajax imagemap data problem carelmeyer 0 941 1st May 17:39
Last Post: carelmeyer
  [Solved] IE8: qTip's not appearing. DaveRich 3 269 2nd April 21:58
Last Post: Craig
  [Solved] Mouse over in IE8 makes CPU go wild haimaimai 4 307 2nd April 21:53
Last Post: Craig
  [Solved] Problem with my map area installation timtimd 1 244 14th March 17:34
Last Post: Craig
  Hiding tooltip problem sohailanwarpk 2 403 31st January 12:13
Last Post: sohailanwarpk
  qTip & ASP.NET UpdatePanel Postback Problem qTipNoob 4 3,033 10th January 15:01
Last Post: naupadnara
  [Solved] Anti Virus flags up a problem OllyPercival 9 2,490 21st November 21:45
Last Post: Col
  [Solved] Problem with Fixed Position div and scrolling homerlex 7 1,467 26th October 19:35
Last Post: Craig
  [Solved] Starter problem enne87 1 631 12th July 17:29
Last Post: Craig
  [Solved] web thumbnail demo problem IanFromBarrie 1 767 27th June 15:12
Last Post: Craig



User(s) browsing this thread: 1 Guest(s)