Alert With Two Options (proceed Or Back To Previous Page)
Jan 27, 2004
<script language="JavaScript" type="text/javascript">
if (confirm("Are you sure to delete?"))
{
self.location = 'delete.php'
} else {
history.go(-1);
}
</script>
The above code give an alert with two choices(confirm or cancel).
If the user clicks the cancel button, it will go to previous page.
If the user clicks the confirm button, it will go to delete.php.
I like to make it like the following.
If the user clicks the cancel button, it will go to previous page.
If the user clicks the confirm button, It will proceed reading the next code.(the next code contains the code for deleting.)
I tried to remove "the self.location = 'delete.php'" as a test.
Code:
<script language="JavaScript" type="text/javascript">
if (confirm("Are you sure to delete?"))
{
} else {
history.go(-1);
}
</script>
The above code do;
If the user clicks the cancel button, it will go to previous page.
If the user clicks the confirm button, it will proceed reading the next code. So the deleting will be done.
It seems work fine.
But if the user clicks the cancel button, It will go to prevous page and the deleting will be done.(it might proceed reading the next code)
View 9 Replies
ADVERTISEMENT
Jul 1, 2005
does any one have any idea how to go back to a calling (previous page) from the present one you are in;
1. without clicking the 'back' button on the toolbar
2. and still retain the values that a user already filled in in the previous page you are returning to (i.e. - the user should not have to fill in the values afresh)
3. maybe using the on click event of a button, or any other method.
View 1 Replies
View Related
Mar 17, 2002
What i'm doing is that i've got a sign-up form. Since the signup form can be accessed from many pages, i'm trying to use javascript to go back to the page the person comes form. so what i'm using is this:
PHP Code:
This works perfectly.. BUT.. in some browsers i have to press refresh to have the changes made.
E.g. index.php says "hello guest" after signing in some browsers say "hello user" some like ie5 say "hello guest" (if i refresh, then it says "hello user")
So is there anyway to goback to the previous page in history and not to use the cache?
View 8 Replies
View Related
Jan 30, 2010
I want to add more dropdown options which are dependent on previous options. Now I have "hand" and "loft". I want to add next option "model" How to add third dropdown option box?
Here is the code:
View 3 Replies
View Related
Jan 14, 2010
Is there a way to create an alert that would pop-u when the user clicked refresh?
On refresh:
"Warning: Refreshing this page will bring you back to the beginning of the application. Are you sure you want to refresh the page?"
Yes - No
On page forward or back:
"Warning: Using the forward/back buttons may cause unexpected problems. Please use the tabs to navigate from page to page. Are you sure you want to use the forward/back button?"
YES - No
View 1 Replies
View Related
Nov 22, 2011
How to create forms, like survey forms using javascript. I cannot ask all my questions at once as they differ according to user's answer. The tutorials and examples I found on the web are more to how to check whether user's inputs are within numbers for the "phone", which is not useful for my case.My form is simple, the user will only submit an answer to every question, although there will be a few options given. Currently i am thinking of creating buttons with options on it and the user can click on the desired answer.
Then the page needs to refresh to the next question (as mentioned earlier, the question depends on the user's answer to previous question. There will be no true or false answer.What i have done currently is up to : ask question 1, and created yes, no and maybe buttons, and different messages will appear in a pop up window according to user's answer. This is NOT what I want, i want the page to refresh and proceed to next question instead of having pop ups. as I mentioned, there is no true and false answer. Every answer by the user is like a command to what question should be called next.
View 1 Replies
View Related
Jul 31, 2009
I'm using ajax to update options in several select forms.Its basically, like in most automotive applications, there is a drop down for brand...once selected, it will populate another select form with the "makes" of that brand. Once a make is selected.. it returns the models of that make... and ect...The program works fine for one selection. When one brand is selected, a second select box is populated with the correct makes of cars that brand produces, however, if the brand is changed, the select box with the makes of the cars is populated by the original query..twice... and then the second query. Looking for help on whats the best way to clear both the results array; i was using this...
autobrandsf.length = 0;
and also clear out the select box, which is what the removeAllOptions() function is for. As it stands, if i use the removeAllOptions(), the makes are never populated.Here is my code, broken down the best i could, in order of process.. ish.A select form that shows the brands is displayed, once a choice is made, it passes the value of the choice into this function, which will query the database
// this is the function that is called once a brand is selected:
// h = the brand passed..
function carBrandCheck(h){[code]....
This is where, the query is returned, each row is split into an individual array, and then the second element of those individual arrays are put into yet again another array.The elements of that array are then compared against eachother to make sure there are no duplicates, storing the non-duplicates into a new array. The final array is then passed into a select form, for the makes of the selected brand.
// the ajax handler:
function handleWorkResponse(){
if(xmlHttp.readyState == 4){[code]......
View 3 Replies
View Related
May 31, 2010
I'm looking for four level connected drop down boxes. Unlike all the scripts I have seen on the internet I need all the options to be available if nothing is selected in the previous drop down. So I want something like combination of connected drop downs and ordinary drop down. If the selection is made, display appropriate options in other drop downs... Hope I'm clear...
[Code]....
View 4 Replies
View Related
Mar 7, 2011
I am using some Javascript to open up a pop up window...
<script type="text/javascript">
//<![CDATA[
function editText() {
[code]....
This works fine and within that popup window I have the following:
<form action="index.php" method="post">
<textarea name="userInput" id="userInput" cols="32" rows="10"><?php echo $_SESSION['greeting'];?>
View 1 Replies
View Related
Nov 11, 2011
I have create a spinnrer (numeric up and down field) in my form.Below is the code for it:
<form action="create_session.php" method="post" name="createsession"> <!-- This will post the form to its own page"-->
<table cellpadding="0" cellspacing="0" border="0">
[code]....
View 1 Replies
View Related
Jan 26, 2004
Code:
<script>
alert("You are not allowed to see this page");
self.location="javascript:history.go(-1)";
</script>
The above script has one option.
I like to make two options(yes or no) like the following.
Code:
<script>
alert("Are you sure to delete?");
Yes(self.location="delete.php");
No(self.location="javascript:history.go(-1))";
</script>
Is it possible? How?
View 2 Replies
View Related
Jan 28, 2011
I want users to work from a main application. Certain things will need to be done but the users wont want to see the main screen go away while doing these certain things. So my idea is to just open a new window with the content they need, they'll make their changes, the new window will close but then I want the main page to reload.What I've done now is at the end of the script that will be run prior to the new window closing is added this (its a php app):
echo "<script>window.close();</script>";
echo "<script>window.opener.location.reload(true);</script>";
Sometimes this works in IE and Firefox but never in Chrome. I know I've seen this done before on other sites, but I cant think of what they are.
View 2 Replies
View Related
Feb 24, 2004
I am trying to write a script that uses the IF statement to see wether or not a user clicked the back button to come to a page, and then if it's true to not let the page load and kick them back X number of pages (say 4) This is what I have so far:
<script language="JavaScript"><!--
if javascript:window.history.back == 1
{
javascript:window.history.back(4);
return false;
}
//--></script>
View 14 Replies
View Related
Jun 7, 2011
i need typing cursor back in first text box after clicking ok of alert
[CODE]
<html>
<head>
<script type='text/javascript'>
function player()
{
document.getElementById("Player2").value= document.getElementById("Player1").value;
[Code]...
View 2 Replies
View Related
Sep 8, 2011
I need an html page that when visited automatically redirects the browser to return to the previous page it was on. here is the current code I have:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>[code]....
this works in firefox but in IE you have to press ok in the alert box before it returns. I admit I am a javascript novice. Any suggestions
View 1 Replies
View Related
Aug 30, 2011
I found this forum while running out of ideas and being extremely desperate to fixing a probably small javascript error in a script. the script is supposed to open a small form window that allows the user to input an email address and update it to proceed. the form item is initially unchecked, but as the user clicks it and enter his email address, it updates the value of the email address and the box becomes "checkable". the problem is that with both IE and firefox, the box doesn't close again, doesn't get checkable and basically doesn't work. in the firefox debugging console, I found the following error:
Quote:
The part responsible in the javascript for this section is:
Quote:
And the html code that is supposed to pop up the box is:
Quote:
View 1 Replies
View Related
Feb 19, 2009
I have page A that redirects to page B. Now I want to go back to the page I came from(Page A). Using javascript:history.go(-1)"> I can go back but not in FireFox , It by pass the previous page. How can I solve this problem. Is there a way to get previous page URL
[Code]...
View 6 Replies
View Related
Dec 5, 2007
I would like to expire my session when a person enters different url in the navigator bar other than my url and comes back to my url.
For example if i visit example.com and then i type gmail in the same navigator bar and then move back to my url example.com through browser back button then i have to end the session of my client i mean he has no more access to my site.
View 1 Replies
View Related
Jan 26, 2011
I'm trying to add extra DIVs after the first one on a page. This is for a CMS with form fields in them. Here is the first DIV:
<div class="OptExtra">
<h3>Additional Option</h3>
<label for="RESAddType">File type (i.e. “CD” or “Download”)</label>
<input name="RESAddType[]" type="text" id="RESAddType" size="48" class="FW" />
[Code].....
View 10 Replies
View Related
Jun 26, 2011
I'm -very- green when it comes to Javascript, but I'm working my way up. The problem right now I'm running in to now is when trying to implement a website function that allows two buttons (previous, and next) to do their respective tasks.
I can get the script to go forward and back, however when I jump to another page in the frame (this is all through iframes), when clicking either button, it will take me to the last page I had stopped on. A little hard to explain, but maybe seeing the code will give you a better idea.
<script type="text/javascript">
var pNum=0;
var maxPage=10;
function next()
{
pNum++;
if (pNum > maxPage) pNum=10;
[Code]...
It's nothing fancy, but it's apparently keeping the last page it was on in memory instead of resetting itself, so when I go back to the start page it starts on page 0 and goes to page 10; right now I can stop on page 5, click a link to go back to the starting default page, and when using the 'next page' button it will start on 6 and go from there.
View 6 Replies
View Related
Jul 20, 2005
Is it posssible to inherit the previous pages (parent pages)
background image? Is there a script out there I could look at?
View 4 Replies
View Related
Sep 11, 2011
I'm asking if it's possible to prevent a goback to the previous page with jQuery or Javascript, if so then how is the best approach?
View 1 Replies
View Related
Mar 26, 2011
I need to put previous/next navigation button images on a lot of slides.If i am on slide 3 I'd like javascript to identify previous button as slide2.html and next button as slide4.html and so on
View 14 Replies
View Related
Jun 28, 2004
I'm buildning a permissions system. If the database check shows that the user doesn't have access to the PHP script she tries to access, I want to diplay an alert window telling her so. And when she presses the "OK"-button, I want the browser to send here back to the previous page that she came from.
Is this a javascript problem? Is there a quick and dirty solution?
View 1 Replies
View Related
Feb 2, 2011
I have a page which contains various form elements and at the end of the page is a link to another page. I'm using
<form method="get" name="form1" action="Outcome.htm">
on the first pageand I've got the following code on the second page...
function GetVars()
{
var dl = document.location;
[code].....
View 5 Replies
View Related
Mar 28, 2010
I have a frameset like:Quote:
<frameset rows="100,*,80" border="none">
<frame src="header.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
[code]....
View 14 Replies
View Related