[jQuery] Re: Fixing divs with jquery (adding )

2007-10-29 Thread Corey Frang
You could simply wrap the php file in another php file that does ob_start() then includes the other php file, ob_get_contents(), edit the code appropriately and then dump it. Would be my suggestion... Broken DOM leads to many problems, one of which is jQuery wont be able to find selectors ve

[jQuery] Couple of Bugs, css + jquery

2007-08-22 Thread Corey Frang
http://www.pablokorona.com/corey/ I figured I'd just post this to both lists as there is a good chance someone on either side can help me with either problem. The big problems I'm having 1) The layout breaks hard in IE6, any suggestions? 2) The animation, the #picfloater blinks in and out of

[jQuery] Re: Select only the next row in a table

2007-06-27 Thread Corey Frang
Not really, that selector finds ALL "tr" then any "tr" after each of those. Assuming your calling it from something like this: $(".showNextRow).click(function() { $(this).parents("tr").next("tr.hidden").show(); return false; }); also assuming that the t1 table isn't inside another table with