[jQuery] Re: Content called using $().load() isn't displaying in IE (content contains an Iframe)

2009-02-12 Thread scottg...@gmail.com
I'm not 100% clear on what you are asking here but, looking at your code: Looks like if you click on the anchor with class ajax you are loading the href into the #content object. Is the iframe that you are messing with on the same domain? There are a ton of funky security permissions with

[jQuery] Re: Finding the last sibling.

2009-02-12 Thread scottg...@gmail.com
Last child method, definitely better. :-) On Feb 11, 10:13 pm, Nic Luciano adaptive...@gmail.com wrote: $(div :last-child); (or this wacky way I tried before I learned CSS selectors $(div).children()[$(div).children().size() - 1])...) Nic