sorlaker
01-02-2012, 03:37 PM
What wrong in this code?
<script type="text/javascript" src="jquery.js"></script>
<script>
$(function (){
function manda(){
var text = $('#frame').contents().find('p[class=no_boder]').html();
$('div').html(text);
}
});
</script>
i've already tried using this ->
$('#frame').contents().html();
How can i get the content?
<script type="text/javascript" src="jquery.js"></script>
<script>
$(function (){
function manda(){
var text = $('#frame').contents().find('p[class=no_boder]').html();
$('div').html(text);
}
});
</script>
i've already tried using this ->
$('#frame').contents().html();
How can i get the content?