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

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -