Jquery - Framest - uiDialog Issue (Newbie)
Hi All,
I'm very new to jquery
This is my setup.
I have a web application that has frameset containing 2 frames
<frameset id="fsMain" border="0" frameborder="0" framespacing="0" cols="245,*">
<frame name="fLeft" src="Links.aspx" scrolling=no/>
<frame name="fRight" src=""/>
</frameset>
The right frame contains another web application which call
parent.ShowMessageDialog(msg)
In the ShowMessageDialog I build up a div conatining the message and use the JQueryUI extension (ui.dialog.js) to display
Calling $("body").prepend(messageHTML); is not displaying anything to the screen.
using IE Developer Explorer i can see that there in no body on the the parent page only the frameset and subsequent frame.
How can i prepend my html to the frameset so that it appears modally across both frames.
Any help is greatly appreciated
Thanks,
Micheal