jquery - How to append to first frame? -
jquery - How to append to first frame? -
i have next code:
<frameset rows="70,*" frameborder="0" border="0" noresize=""> <frame name="heading" scrolling="no" noresize="" src="head.htm" marginwidth="0" marginheight="0"> <frame name="online" src="head/head/heading.htm" marginwidth="0" marginheight="0"> </frameset>
i have append div body first frame. how do that? tried various solutions still cant append div.
frames deprecated utilize iframe instead.
but if don't utilize html5 , want utilize frames, should care append frame within frameset. appending body won't work.
$('frame[name="heading"]').appendto('#framesetid');
jquery frames
Comments
Post a Comment