[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:

[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 !DOCTYPE or the :hover{} seems to fix it. Looks

[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-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 Sean Catchpole
$(document).ready(function(){ /*$(h1).after(hr class=\thinDivider\ /);*/ $(h1).after(span class=\thinDivider\/span); }); You forgot to end you span tag: $(function(){ $(h1).after(span class=\thinDivider\/span); }); ~Sean

[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: