[jQuery] Re: Weirdness in IE

2007-05-31 Thread Joel Taylor
Richard, sorry for miss-understanding you. However, thank you, thank you, thank you for pointing out my error I changed that style to: #content h1 + p, #content hr + p and that fixed it! oh my gosh. mystery solved. Joel On 5/31/07, Richard D. Worth <[EMAIL PROTECTED]> wrote: > > On 5/31/07,

[jQuery] Re: Weirdness in IE

2007-05-31 Thread Richard D. Worth
On 5/31/07, Joel Taylor <[EMAIL PROTECTED]> wrote: On 5/30/07, Richard D. Worth < [EMAIL PROTECTED]> wrote: > > > I think I found a minimal test case for you. It's just IE, CSS, and DOM > (no jQuery bug): > > ... > > Talk about weird. Removing either the or the :hover{} seems > to fix it. L

[jQuery] Re: Weirdness in IE

2007-05-31 Thread Joel Taylor
Ok, I tried both of those, and neither of them fixed the issue in IE7 (I didnt even check IE6) On 5/30/07, Richard D. Worth <[EMAIL PROTECTED]> wrote: > > On 5/25/07, Joel Taylor <[EMAIL PROTECTED]> wrote: > > > > I still need help with this one. > > See it here: > http://dd-management.com/dev/TC/

[jQuery] Re: Weirdness in IE

2007-05-30 Thread Richard D. Worth
On 5/25/07, Joel Taylor <[EMAIL PROTECTED]> wrote: I still need help with this one. See it here: http://dd-management.com/dev/TC/treatment.asp?sub=addiction-treatment I think I found a minimal test case for you. It's just IE, CSS, and DOM (no jQuery bug): /* layout.css */ .input:hove

[jQuery] Re: Weirdness in IE

2007-05-25 Thread Joel Taylor
I still need help with this one. See it here: http://dd-management.com/dev/TC/treatment.asp?sub=addiction-treatment On May 24, 4:54 pm, Joel Taylor <[EMAIL PROTECTED]> wrote: > append won't work either, I need the tag AFTER the h1, not inside it. > I also tried insertAfter - but that didn't work

[jQuery] Re: Weirdness in IE

2007-05-24 Thread Joel Taylor
append won't work either, I need the tag AFTER the h1, not inside it. I also tried insertAfter - but that didn't work either. any other options? On May 24, 3:21 pm, "Jean Nascimento" <[EMAIL PROTECTED]> wrote: > try u use append? > > On 5/24/07, Joel Taylor <[EMAIL PROTECTED]> wrote: > > > > > no

[jQuery] Re: Weirdness in IE

2007-05-24 Thread Jean Nascimento
try u use append? On 5/24/07, Joel Taylor <[EMAIL PROTECTED]> wrote: nope, that didnt help either (seriously, I'm not normally that sloppy with my code!) - I changed it back to the original, see what it does now. On 5/24/07, Sean Catchpole <[EMAIL PROTECTED]> wrote: > > > $(document).ready(fu

[jQuery] Re: Weirdness in IE

2007-05-24 Thread Joel Taylor
nope, that didnt help either (seriously, I'm not normally that sloppy with my code!) - I changed it back to the original, see what it does now. On 5/24/07, Sean Catchpole <[EMAIL PROTECTED]> wrote: > > > > $(document).ready(function(){ > > /*$("h1").after("");*/ > > $("h1").after("

[jQuery] Re: Weirdness in IE

2007-05-24 Thread Sean Catchpole
$(document).ready(function(){ /*$("h1").after("");*/ $("h1").after(" You forgot to end you span tag: $(function(){ $("h1").after(""); }); ~Sean