I am trying to use jquery to find a div inside an iframe. Is there a better way than the one I\'m using below?
$(\'#Iframe\').contents().find(\'#MyDiv\') fu
This will only work if the Iframe source is in the same domain as your page, if not the browser wont allow it for security reasons