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
Post a Comment