[jQuery] Re: tabs + jqmodal = bad things in IE6

2007-08-10 Thread Brice Burgess
On Aug 8, 10:20 pm, m3avrck <[EMAIL PROTECTED]> wrote: > Will be announcing the plugin very soon, it's going to rock and amaze > people, based on the current feedback ;-) [yes, it's called CSSmizer] > > However, found another bug -- onShow is called the first time the page > loads, but if you clos

[jQuery] Re: tabs + jqmodal = bad things in IE6

2007-08-10 Thread Robert O'Rourke
m3avrck wrote: Well it shows subsequent times, but in IE6, the first time it works great, the second time it gives an error that it's trying to show a hidden element... Brice emailed me so I might be using the onShow slightly wrong, hopefully that is it! Ok cool, let me know how you get

[jQuery] Re: tabs + jqmodal = bad things in IE6

2007-08-09 Thread m3avrck
Well it shows subsequent times, but in IE6, the first time it works great, the second time it gives an error that it's trying to show a hidden element... Brice emailed me so I might be using the onShow slightly wrong, hopefully that is it!

[jQuery] Re: tabs + jqmodal = bad things in IE6

2007-08-09 Thread Robert O'Rourke
m3avrck wrote: Turns out the problem with the window disappearing in IE6... You cannot use overlay: 0 doh! Took me 2 hours to figure out, you need to specify a minimum of 1 for it work like so: $("#cssmizer") // initialize CSSmizer .cssmizer(settings) // setup mod

[jQuery] Re: tabs + jqmodal = bad things in IE6

2007-08-08 Thread m3avrck
Turns out the problem with the window disappearing in IE6... You cannot use overlay: 0 doh! Took me 2 hours to figure out, you need to specify a minimum of 1 for it work like so: $("#cssmizer") // initialize CSSmizer .cssmizer(settings) // setup modal .jqm({

[jQuery] Re: tabs + jqmodal = bad things in IE6

2007-08-08 Thread Robert O'Rourke
m3avrck wrote: Thanks Rob! No prob. I reread the docs and got it work using the following: $("#cssmizer") // initialize CSSmizer .cssmizer(settings) // setup modal .jqm({ trigger: "#cssmizer-launch", overlay:0, // becaus

[jQuery] Re: tabs + jqmodal = bad things in IE6

2007-08-08 Thread m3avrck
Thanks Rob! I reread the docs and got it work using the following: $("#cssmizer") // initialize CSSmizer .cssmizer(settings) // setup modal .jqm({ trigger: "#cssmizer-launch", overlay:0, // because tabs are being shown in a jqMo

[jQuery] Re: tabs + jqmodal = bad things in IE6

2007-08-08 Thread Robert O'Rourke
m3avrck wrote: Hey folks, So I'm trying to combine the excellent jQuery tabs (www.stilbuero.de/ jquery/tabs/) with jqModal (http://dev.iceburg.net/jquery/jqModal/) and am having a bit of trouble in IE6. Basically, you click a button, jqModal pops up with some tabs. Easy, you'd think, but then