Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Solved] Reduced width in IE8
13th February, 03:01 (This post was last modified: 13th February 03:03 by JediBW.)
Post: #1
[Solved] Reduced width in IE8
Hello,

The tooltips show up fine in Firefox but they're squeezed into a thin line in IE8. I've already tried adjusting the widths using both CSS and jQuery to no avail.

http://www.libroslibertad.ca/index2.php

Could this be because the images are in a scrolling bar? Should I upgrade to qTip2? (the download page isn't working at the moment)

Thanks very much
Find all posts by this user
Quote this message in a reply
13th February, 16:14
Post: #2
RE: Reduced width in IE8
This is a common issue with the 1.0 builds, try upgrading to qTip2 here: https://github.com/Craga89/qtip2

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
14th February, 02:32 (This post was last modified: 14th February 02:33 by JediBW.)
Post: #3
RE: Reduced width in IE8
Thank you very much, this problem was resolved after upgrading to qTip2.

However, I have another question: how do I prevent the title from being displayed while the Ajax HTML content is taking time to load?

I've tried putting this in front of the Ajax call, but it doesn't seem to work:

JS Code
content: {
      text: false,
      title: {
         text: false
      }
   }


Thanks again!
Find all posts by this user
Quote this message in a reply
14th February, 15:04
Post: #4
RE: Reduced width in IE8
Well not defining a title will cause it not to render one, so you can remove the title object all together. Then you can use the success callback of the ajax object to set it manually.

JS Code
content: {
	text: 'Loading...',
	ajax: {
		url: 'tooltip.html',
		data: { id: 1 },
		success: function(data) {
			this.set({
				'content.text': data,
				'content.title.text': 'Title'
			});
		}
	}
}

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
14th February, 23:27
Post: #5
RE: [Solved] Reduced width in IE8
Actually, I depend on the title attribute to store an id variable (populated with PHP) which I send along the Ajax request. I've tried using other attributes, but they don't seem to work...
Find all posts by this user
Quote this message in a reply
15th February, 18:19
Post: #6
RE: [Solved] Reduced width in IE8
I'm not too sure what it is you're asking in that case... elaborate?

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
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  How set width that's greater than default max on for exactly one tip? AlKoch 5 119 7th May 21:33
Last Post: Craig
  [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] ajax tip width help jondow 2 705 10th November 21:21
Last Post: jondow
  [Solved] Ajax element width trogo 1 863 27th September 12:37
Last Post: Craig
  onContentUpdate set new width? tnorton25 1 699 13th June 14:40
Last Post: Craig
  [Solved] Tip corner not showing in IE7 and IE8 danlefebvre 9 3,338 3rd June 08:17
Last Post: amitshahc
  On jQuery 1.5.1, tips don't appear in IE7 or IE8 panabee 3 1,434 23rd May 17:51
Last Post: Craig
  IE8 dont show the tip? SnowJim 1 660 27th March 23:04
Last Post: Craig
  [Solved] Stem not appearing in IE8 tadywankenobi 10 2,117 14th March 18:01
Last Post: Craig



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