How to target an element that comes under the iframe tag to style with css or javascript?
any help will be apreciated
thanks in advance
How to target an element that comes under the iframe tag to style with css or javascript?
any help will be apreciated
thanks in advance
You can access elements in an iframe by giving the element a class or id and making the proper adjustments in css. To access a class in css you should have a dot "." before the name of the class and "#" if you want to access an id. In javascript you can access the element by giving it an id and using getElementById("name of id") or giving it a class name and using getElementsByClass;
you can use this to access to an iframe from the parent page:
$('iframe').contentWindow.document.[body|head...][getElementById/ClassName...];