[jQuery] Re: Thickbox Position is Too Low in IE 6

2008-01-24 Thread admsh
so, commenting that first line of code does fix the problem for me in IE: /*$("#TB_window").css({marginTop: '-' + parseInt((TB_HEIGHT / 2),10) + 'px'}); */< DELETE OR COMMENT THIS but it also messes up the window in every other browser - it's too low now. the bottom is lower then the window

[jQuery] Re: Thickbox Position is Too Low in IE 6

2008-01-23 Thread cfdvlpr
So, you have a fix for an IE 7 version. I guess I'm the only one noticing a problem in IE 6?

[jQuery] Re: Thickbox Position is Too Low in IE 6

2008-01-23 Thread Jack
Here is what worked for me: Following problem: IE 7 version .11 do produce a failure where the thickbox will be positioned by the absolulte top postion of the browser NOT the actuall scrolled position this will place the thickbox on top even if you have scrolled down to the bottom of the pag

[jQuery] Re: Thickbox Position is Too Low in IE 6

2008-01-03 Thread cfdvlpr
that fix did not work for me.

[jQuery] Re: Thickbox Position is Too Low in IE 6

2008-01-03 Thread bconoly
I'm assuming you found my thread on how to fix it, but if not, here's the solution I found. It actually turned out that sometimes the jQuery.browser.version sometimes returns an object and sometimes returns a number so this should work. (I'm also using v3.1) function tb_position() { jQuery(

[jQuery] Re: Thickbox Position is Too Low in IE 6

2008-01-02 Thread cfdvlpr
Yes, I was using the latest. I just downloaded version 3.1 this morning from http://jquery.com/demo/thickbox/

[jQuery] Re: Thickbox Position is Too Low in IE 6

2008-01-02 Thread Josh Nathanson
day, January 02, 2008 1:35 PM Subject: [jQuery] Re: Thickbox Position is Too Low in IE 6 By the way, there was also a problem with the thickbox position after scrolling down on the page and then clicking on the thickbox link... FYI, using the dimensions plugin and $(document).scrollTop(), I

[jQuery] Re: Thickbox Position is Too Low in IE 6

2008-01-02 Thread cfdvlpr
By the way, there was also a problem with the thickbox position after scrolling down on the page and then clicking on the thickbox link... FYI, using the dimensions plugin and $(document).scrollTop(), I think I've just made a fix for this. Here's how I've modified the tb_position function in thi

[jQuery] Re: Thickbox Position is Too Low in IE 6

2008-01-02 Thread cfdvlpr
Am I the only one noticing this bug?