Staying Framed
Jul 20, 2005
I have been searching around for a way to ensure a page stays framed.
Here's the catch. The user starts at a two-frame page with the Google
directory in one frame. I want the user to be able to navigate
through the Google directory, but within the frame. Google has some
sort of frame-busting script on this page and I need to find a work
around. The standard,
if (top.location == self.location) {
top.location = 'page.html'
}
script doesn't work because I can't place this script in Google's
page. I have to control it from my pages, either the frameset page or
the other frame.
View 3 Replies
Oct 23, 2004
consider the senario for example if i am taking some input from user on my page and checking that the input should be a number for that imake a script shown below which is working fine Code:
View 3 Replies
View Related
Jul 14, 2010
say i have 1 art image and 3 frame choices. i want to have the art image stay in the background, when you choose your color frame the frame changes.
View 1 Replies
View Related
Jan 25, 2011
I need some kind of javascript that will work in a framed page. Right now when I try to navigate to another framed page located elsewhere on my website it's pulling it up in that frame, so it's an ever expanding framed webpage. I need it to simply open the new page up in the whole browser, and not in the individual frame..
View 1 Replies
View Related
Nov 23, 2006
Is this possible? You see, I have one part of my site loaded onto a different server because it was impossible to store that type of file on the server the main part of my site is on. I have tried to show the second part of the site in a frame on my main site but the site has been fixed so that it cannot be framed. Its like this basically.
Main SiteSecondary Site
Homepage etc.Member's Area of site
I want to frame the "unframable" member's area onto the main site. Can it be done? I have tried frameset and iFrame tags and they don't work. Are there any more?
View 2 Replies
View Related
Mar 29, 2010
I'm trying to add am active class to my menu when the link is clicked using the following [code]...
The active class gets applied but them disappears straight away. Is there something I've missed.
View 3 Replies
View Related
Nov 22, 2011
I have a menu with some items containing a submenu. The submenu's should open when a parent is clicked and contains submenu's, and when traveling to another page (from the item clicked, for example a parent of submenu item), the submenu should remain active and visible. When I click on a parent (at the moment the hrefs contain no links just #), the submenu opens. But when I click another main item, the submenu of the previous parent remain visible, and the submenu of the parent just clicked is also visible, while I only want the submenu of the parent clicked to be visible or when parent with no submenu the submenu should be invisible.
So, here is the code I have so far:
Code:
<div id="topnav">
<ul>
<li>
<a href="index.html">Home</a>
[Code]....
View 4 Replies
View Related
Nov 7, 2010
I'm trying to do something lik dis. the xhtml page from which this javascript is called is in a frame. code...
View 1 Replies
View Related
May 19, 2011
[URL]
Im using Jquery spacegalley,but it wont load in internet explorer when target is main frame,it loads fine in its own window. Everything is fine with firefox.
View 2 Replies
View Related
Apr 12, 2011
I have the following bit of jQuery:
Code:
$("#save_photos_all_continue").click(function() {
event.preventDefault();
var $black_white_all = $("#black_white_all").is(':checked');
var $color_all = $("#color_all").is(':checked');
var $other_all = $("#other_all").is(':checked');
[Code]...
In Google Chrome it works fine but in Mozilla/5.0 it actually goes to the save_edits page instead of just using the post and staying on the original page.
View 2 Replies
View Related