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

go - serving up pdfs using golang -

python - Best design pattern for collection of objects -

r - Using `bbmle:mle2` with vector parameters (already works using `optim`) -