Can I have jQuery on my page that adds a CSS class to a div thats within an iframe?
Thanks
UPDATE. For testing purposes Ive added the following. I would have thought that it would add a class of 'red' to all p tags in any iframe, but its not doing anything:
$(document).ready(function() { $('iframe') .contents() .find('p') .addClass('red'); });
Thanks