I currently have a web page which when a user types something into a text box it automatically updates the same text in a DIV on that page. Using the code below;
<script>
$(document).ready(function () {
$('#someTextBox').keyup(function(){
$('#form').html($(this).val());
});
});
</script>
I currently EMBED another web page within the HTML page and was wondering weather I could dynamically change a DIV within this EMBEDED page from the text box on the container page?
So when a user types something into the text box it updates the #form DIV on the embed page?
I'm not sure if this is possible but wanted to ask.
Thanks