I have a script:
$(document).ready(function(){
$('#submit').click(function(e){
window.location.href = '/dash/do/record/' + $('#filename').val()
return false;
});
});
written as <script src="...jquery..."></script> and <script>... the code </script>
If I load it right from the browser, it works, but if it is called through an iframe, not. What's the reason? What should I do? (The main page has the jquery tag, too)
parent.document.$('#filename').$what is this representing?