Open Page In Self?
Aug 16, 2009
I am coding a little login script, just password, the security is meant to be weak I'm using it as a teaching aid: Here is my problem, I want it to go to a page if the password is true, and go to another if it isn't, my code will explain. The window.open works but it takes you to another tab I want it to load in the same place.
View 4 Replies
ADVERTISEMENT
Mar 5, 2009
I need a script that can open an external page, or some type of content, in a box. This is kind of hard to explain, but here's what I mean, go to facepunch . com (I'm not a spambot dammit) and click on that litte face at the top.
View 1 Replies
View Related
Jul 20, 2005
I have an html page that uses javascript to open a new window and
display a file that gets created when a button is pressed.
My problem is when the file is changed and the display button is
pressed, the old file is still displaying. I have tried using
<META HTTP-EQUIV=expires CONTENT=0><META HTTP-EQUIV=PRAGMA CONTENT=NO-CACHE>, but doesn't work 100% of the time.
View 1 Replies
View Related
Jan 8, 2012
I want to develop a multi-tab browser plugin, which requires all links in a page could open in new tabs within this multi-tab browser plugin. It's very similar to Multi-Tab functions of Firefox/IE, when opening a page in one tab, then any links in that Tab will open in another new tab(after setup from pref), i want to know this principle(how to implement this). I am thinking try this:$('a').click(...), while i am not sure whether it's good/enough.
View 5 Replies
View Related
Mar 9, 2009
what the code is supposed to do is show my form and update the pb field... the thing is when i open my page i just get a blank page with nothing ... not even the form..
pbupdate.php
<link rel="stylesheet" type="text/css" href="http://www.runningprofiles.com/css/login.css"><?php
[code]....
View 3 Replies
View Related
Oct 22, 2009
I need three tabs out of which only one is open at a time n when u open another tab, one out of the earlier closed one should open(preferably with mootools). And also the tab which is opened should come at the top of the page as well.
View 1 Replies
View Related
Mar 16, 2009
I'm trying to create two bookmarklets:
1. Take the current URL of the page and open a new window with a URL based on the current page. Some examples (I use "->" to mean "this URL turns into that URL"):I plan to use these bookmarklets in sequence, first pressing 1 to log into the CMS, then pressing 2 to edit the current page.
View 5 Replies
View Related
Jul 23, 2005
I am opening pop up windows from a hint button on several pages in my
site. If the user leaves the pop up window open from a previous page, I
would like the new hint to open in that window.
I thought that by giving the pop-ups the same name it should work (see
code below) but it isnt. Every time a user clicks on the hint button
the popup opens in a new window regardless of the fact that a previous
hint window is open .
here is my code that calls the function from an html page (there is
also some rollover code in it):
View 4 Replies
View Related
Feb 19, 2007
I writing my html pages in xhtml transitional 1.0. Trying to get a button to open a new html page when pressed. Wanting to make this happen with using javascript. Can somebody help me with this code?
<script>
newpage(){
code to open new html page
}
</script>
<input type="button" value="Click here to make one" onclick=newpage()/>
View 1 Replies
View Related
Sep 24, 2009
Currently the page has some divs' displays set to none. When a user clicks an anchored link, it displays the appropriate div. Here is the script I'm currently using, which works fine:
function showApp(whichApp) {
document.getElementById('dTips').style.display='none';
document.getElementById('dCaseStudies').style.display='none';
document.getElementById('dWebinars').style.display='none';
document.getElementById('dReports').style.display='none';
document.getElementById('dDigimags').style.display='none';
[Code]...
Is there any way to modify it so that if the user clicks a link on a different page, it goes to the APPS page and displays the requested div? If not, is there another way to accomplish this task?
View 3 Replies
View Related
Oct 26, 2009
I am creating chat application.I have friend list with whom login user can chat.onclick of user name i want to open different div in which i can load my chat page.Can anyone suggest me javascript for this task.
View 1 Replies
View Related
Oct 19, 2010
On my webpage you will see the listing "DMV" under the "transporation" heading. When the user clicks on the arrow I want it to open up additional text below the arrow. http:[url]....
View 1 Replies
View Related
Mar 16, 2009
I have a drop down menu that has an iframe in the menu. At the moment when i click the drop down menu it loads the iframe and the content in the iframe, but when i click it again it just runs from the cache, but is there a way to make it reload everytime when i click the drop down menu.
View 2 Replies
View Related
Jul 28, 2010
How can I let link page open using IE? For example, I open a webpage using firefox or chrome/opera/safari. When I click the link, open the link using IE
<html xmlns="[URL]">
<head id="Head2" runat="server">
</head><body>
<a href="#" onClick="window.showModalDialog
('[URL]','','width=600,height=600','screenx=200','screeny=200')"><img src="images/benemanc-01th.jpg" alt="img-01" width="125" height="155" class="thumb" style="display:inline"></a>
</body></html>
View 3 Replies
View Related
Jul 20, 2005
I open a link in a new window:
<a href="http://www.somewhere.com/some.hml"
onclick="window.open(url,null,'resizable=yes,toolbar=no,loc ation=no,directories=no,status=no,menubar=no,scrol lbars=yes,width=600,height=400');">Link</a>
The page I am opening is not mine.
I want to edit the content of the page I am opening, adding text
"This page is opened in a new window" as a first thing after the body
tag of the opened page.
Is it possible to do it with javascript, while opening the page, or
should I use Java?
View 7 Replies
View Related
Mar 5, 2011
I still haven't been able to figure this out through the jQuery directory, but I suspect the answer isn't that difficult;I have a picture that links to a new page in my html. When the user clicks the image, I want a black box to wipe across the image, then load a new page. I can do one or the other, but I don't know how to do both. Here is my code as it is currently written:
<style>
.wipe2right {
background-color: #111;
[code]....
View 4 Replies
View Related
Jan 25, 2010
I need to open a window without scrollbars, menus, etc. and a specific size. I believe I have found scripts that can do this. But I also need it to open to specific coordinates of the page. i.e, only displaying the center portion of the page (the page is not mine) and not letting the user move to other portions with scroll bars, nor resize the window.I realiize that hitting tab will usually move them around, but I am not worried about that. They won't know where they are and will just reload.I have basic html skills but not scripting, other than copying/pasting other people's code.
View 1 Replies
View Related
Aug 21, 2009
How could I open a page/popup after closing one? The objective is to log the user out if they haven't Logged out or clicked Logout.
I am sure there is a simple way to do this. None of my ideas work.
The only answer I could come with (after testing the whole day...) IE(any version), Firefox, and other browsers don't support this idea, due to the fact that the user clicked close and you can't impose things on them.
View 21 Replies
View Related
Apr 11, 2010
Am making a user registration page and i want it to be smaller then my other pages and it should open in a new window, something like a popup window.
View 2 Replies
View Related
Aug 11, 2010
I want to know how i can make a page that opens and loads content in a div tag when i click a certain link on my home page. i have a javscript code to load content into a div tag when the link is on the same page as the div tag, but i want to get a script where it will open a new page and load content into a div tag on that page.
like the link must be something like main.html?div=content.html i know how to do this with iframes, but i want to work with div tags :)
[Code]...
View 1 Replies
View Related
Nov 10, 2010
I have a slideshow on the "Projects" page. The javascript is external.
There's a link on the homepage that when clicked needs to open the Projects page with the appropriate slide loaded. How do I do that?
Here's the code I have for the slideshow code...
View 1 Replies
View Related
Oct 4, 2005
how I can create a link that goes back 2 steps in the history, but opens this in a new window? I've searched for this but no success so far.
View 4 Replies
View Related
Aug 12, 2009
I had a small problem in my page. There are some select menus that the user can select and there is a download button which on click should allow the user to download a file based on the selected options...I used the following code under the onclick event but the problem is that it allows the user to download the file but the page refreshes itself or in other words all the selections are lost when the download window opens
View 1 Replies
View Related
Dec 7, 2009
I am having issues trying to get the javascript to load when I load the page. I had it before and lost the file now I can't seem to get it again. Here is my code.
<!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 TransitionalEN" "[URL]">
<html>
<head>
<title>Wheeler Insurance - Customer Survey</title>
</head>
<body onload="java script:View Survey();">
<p><p>
<script language="javascript" type="text/javascript"><!--
var PDF_surveyID = '095504C919339503'; .....
View 2 Replies
View Related
Jan 19, 2010
I have a page that open a new window witn _blank target.At this page I want to reload the parent window or even better to reload a div with ajax.I tried this window.opener.reload() but did not work.
View 1 Replies
View Related
Nov 12, 2005
I have a little help page that I open as a popup. Is there a way I can place anchors on the help page and based on the link the user clicks the help page will display that section?
View 3 Replies
View Related