jquery - How to resize div with tag object inside -


i'm trying similar topic

how create jquery 2 div resize horizontally

with difference of adding tag "object" in div, this:

$("#div1").resizable() .html("<object data = 'http://www.csszengarden.com/' "  + "width = " + $("#div1").width()  + " height = " + $("#div1").height() + " ></object>");  $('#div1').resize(function(){    $('#div2').width($("#parent").width()-$("#div1").width());  }); 

but prevent me resize div. do resizing when div contain reference web page?


Comments

Popular posts from this blog

python - Best design pattern for collection of objects -

go - serving up pdfs using golang -

python - django admin: changing the way a field (w/ relationship to another model) is submitted on a form so that it can be submitted multiple times -