i am trying to edit content from iframe using jquery but nothing really seems to happen. Can anyone explain why please?
 <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<iframe src="//api.jquery.com/" width="80%" height="600" id="frameDemo"></iframe>
    <script>
    $( "#frameDemo" ).contents().find( ".page-title" ).text('My html');
    </script>
 
     
    