I need to select an iframe with an jquery query inside the same iframe. However, I don’t want to assign the iframe a unique id and use
$('#'+self.name,top.document)
(which i saw somewhere). Is there any relative way to do this (something with $(this) and traversing ??!?)
Everything is on the same server, there is no xss.
If you have only one iFrame on your site it’s easy. Just use this selector
If you have more then one it gets more complicated. iFrame document doesn’t have a clue in which of the main page iframes it was loaded so there is no easy way of selecting parent iframe with the selector. If you however know the parent id, name, class or even iframe source url you can use that information to modify the selector above to only match iframe that you want. You could also match a iframe you need if you know its index on the main page.