javascript - close an object tag in html5 -
i loading html page in tag , getting loaded in overlay
<div id="overlay-inabox4" class="overlay"> <div class="wrapper"> <object id="sendmessageoverlay" data="http://localhost:8000/messages/write/?recipients={{ context_user.username }}" style="height:25rem; width:50rem;" /> </div> </div>
after doing operation in overlay want close it.
how can this?
i tried doing changing css of $('.overlay') display:none, wont work because $('.overlay') not accessible within object tag contents.
Comments
Post a Comment