I have iFrame which looks like this:
<iframe id="iFrame" scrolling="no" name="iFrameTarget">
#document
<head></head>
<body>
<div id="content">
<form id="#myForm"></form>
</div>
</body>
</iframe>
and I'm trying to change css style of element inside body #myForm
I tried this but it didnt help:
$(document).ready(function () {
$('iframe').contents().find("form").first().css('max-width', 'none');
});
Is there other solution to do this ?