Have a question, how to manipulate a DOM object on a particular page. What i’m trying to do is to open a pop-up page and then manipulate an object over there.
The following code manipulates the object on initial page:
cuteLittleWindow = window.open("/calendar/view.html", "littleWindow", "location=no,width=320,height=200");
$('.navbar-inner').hide();
You can do
You don’t have to include jQuery on the page in the cuteLittleWindow. But be sure to have both page served from the same domain. This especially means that you cannot test in
file://.