Is it possible to get content from an iFrame?
<p class="title">Here I want to insert .moviename's content which is in iframe</p>
<script>$(".title").html($("#myIframe").contents().find(".moviename"));</script>
Is it possible to get content from an iFrame?
<p class="title">Here I want to insert .moviename's content which is in iframe</p>
<script>$(".title").html($("#myIframe").contents().find(".moviename"));</script>
due to the same origin policy I think you can use web page parser or html parser scripts to fetch specific data from other domain's web page.
here is examples of web page parser scripts :