resizable iframe with handle within frame?
just wondering if anyone knows if this is possible? and also, if 开发者_开发百科its feasible, id prefer pure javascript on the parent document (i.e no jquery/libraries).
take a look at jqueryui.com/demos/resizable/default.html. thats the resizable that i mean, and the handle is the little shape in the bottom right of the element.
thanks
The resizable
plugin is not working well with iframe
as far as I could see.
One work around would be to use div
instead of frame and load the other page contents into that div e.g.
$("#MyFrameDiv").load("MyPage.php");
Then you can make that div resizable without any problem.
精彩评论