Javascript Alert/Confirm Dialogs And I18N
Apr 3, 2006
I'm pretty sure after reading this board and many like it that it is
impossible to change the ok, ok/cancel buttons that appear by default
in the alert and confirm javascript dialogs. Now for question one why
not? And question two why do they still say ok and ok/cancel when
viewed in a non-english browser install?
I have installed Chinese IE 6.0 and these buttons still say Ok/Cancel.
the rest of the browser (buttons, menus, etc...) is in Chinese except
for these two stupid buttons. No one final question, whould having a
reginonal OS installed make any difference. Right now I'm using an
English OS but with the Chinese browser mentioned above.
View 1 Replies
ADVERTISEMENT
Jul 23, 2005
A description of the problem:
1) Go to a page with various settings and a timeout (forces re-login
if over 10 minutes)
2) Before the timeout, make some changes to settings.
3) Press a "reset to defaults" button that uses a confirmation box to
let the user know what is about to be reset (lists items).
4) Walk away while the confirm box is displayed and come back after
the page timeout.
5) My screen now has the page, a confirm popup on top of that, and a
timeout alert on top of that.
6) Press OK to dismiss the timeout alert. The underlying page goes to
the login screen, but the confirm box remains.
How can I clear any javascript alert/confirm popups in this situation
automatically?
View 7 Replies
View Related
Oct 14, 2009
Code like the below creates almost always more than one and sometimes as many as ELEVEN dialog boxes. This frustrating behavior doesn't seem to be affected at all by whether you choose "OK" or "Cancel".Is this a known issue and if so, is there a workaround?
$(".delete").live('click',function(){
if(confirm('delete stuff?'){
$.post('delete.php',{toDelete:$(this).attr('id')},function(){
[code]....
View 1 Replies
View Related
Nov 13, 2010
i am facing a problem after using jquery jconfirm alert. Issue is that after receiving confirm alert, when user press tab to go on Cancel button and press Enter key there, despite of firing event of Cancel button, it fires the event of OK button. this issue is not produced when user press the cancel button by mouse. Waiting for your replies.
View 1 Replies
View Related
Nov 13, 2003
How would I go checking if a certain submit button was pushed and if so confirm the user if he is sure. But if he pushes cancle, then it will cancle the operation.
View 4 Replies
View Related
Jul 9, 2009
i am calling one function after another.
The below code shows a confirmation box and redirects to [URL]
Code:
<script type="text/javascript">
function todo(){
window.location="http://www.yahoo.com";
}
[Code]....
View 1 Replies
View Related
Nov 25, 2006
This confirm alert works except I want when the user clicks on OK that the newwindow.html page loads.
onClick="if(confirm('Are you sure you want to exit?'))alert('The program is still running in the Taskbar...');location='../newwindow.html' target='_blank'else alert('YOu chose not to leave - good!')"
That bit in red doesn't seem to do the trick. Neither does document.location.
View 4 Replies
View Related
Jan 25, 2010
I am working on a PHP web application for my company and have run into a problem with Javascript. In a list I am displaying from a Mysql database, I have the option to delete certain entries. Before someone deletes an entry though, I want them to have an alert box pop up and asked then if they are sure. I have this simple javascript function in the head of the page, but whether cancel or ok are pressed, the page refreshes to the link. How can I fix it so that if you press cancel, nothing happens, other then the alert box goes away, but also allows the link to process if OK is pressed?
HTML Code:
<script type="text/javascript">
function show_confirm(){
var r=confirm("Press a button!");
if (r==true){
alert("You pressed OK!");
}else{
alert("You pressed Cancel!");
}}
</script>
View 7 Replies
View Related
Apr 4, 2011
I am using the validate plugin to perform validations on a form.I would like to show a confirm message ( alert with ok and cancel ) upon submit and successful vaildation.I have tried the following but it does not work:[code]The form submits even If I click "Cancel". Is there anythingwrong with my code above?
View 6 Replies
View Related
Oct 13, 2006
This is a weird one and I am wondering if someone can help?
I have a piece of Javascript
function deleteRequest(searchID) {
if (confirm('Are you sure?')){
location = "index.php?spDB=inactive&searchID="+searchID;
}
}
When the page gets reloaded, it runs a database query and something is
made inactive.
The problem is:
When the confirm box appears, if I press OK quickly, the database query
doesn't happen. If I wait 1 second and then press OK, it is fine and
the query is run.
Basically it appears that the time between the confirm javascript
appearing and the time taken to press the Ok button affects the
reloading of the page.
Has anyone else had an issue like this?
View 1 Replies
View Related
Sep 21, 2006
I have created a form with two submit button “Delete and Edit” in the form I have a javascript code, that displays a confirm box when the delete button is clicked, clicking on cancel should stop the execution of the delete script and ‘ok’ should run the script. Now, using the form this way works perfectly in Mozilla fireworks, but IE posing a problem when I click on cancel, it still executes the delete script.
<form method="post" action="eddel.php" >
<input type="submit" value="delete" name="delete" onclick=”return confirm(‘are you sure you want to delete record?’)”;>
<label>
<input name="edit" type="submit" value="edit" />
</form>
View 1 Replies
View Related
Jul 21, 2005
I have never done any javascript at all but I think it can do what I want with ease.
Basically at the moment I have a link that calls a delete script written in php. The delete script just deletes and item from my mysql database. What I would like is a popup to appear when the link is clicked that asks for the user to confirm they wish to delete.
Could anyone either show and example or point me to a site that may have a tutorial or something.
View 6 Replies
View Related
Jan 16, 2006
I currently have the follwoing javascript function: Code:
/**
* ask question, if true goto X
*/
function watsConfirmAction( question, letsgoto )
{
// ask question
if ( confirm( question ) )
{
// on YES goto location
location.href = letsgoto;
}
}
which is used as follows:
HTML Code:
<a onClick="watsConfirmAction('ask question', 'some URL')">link</a>
If a user doesn't have javascript, for whatever reason, this will fail to send them anywhere. is there a better way of doing this to allow for javascript non compliant browsers?
View 3 Replies
View Related
May 14, 2010
Is it possible to change the "OK" text in an alert confirm box?
View 4 Replies
View Related
Mar 17, 2006
Hi, I have this JavaScript, which I only want to occur if a user clicks on a
hyperlink hotspot in a large image:
<script type="text/javascript">
<!--
var answer = confirm ("This link is not available, click OK to load a
similar link, or Cancel to not.")
if (!answer)
window.location="http://www.yahoo.com/"
// -->
</script>
To make matters more challenging, there are about 10 hotspots in the image,
and I want them each to have a different value for window.location. I.e. if
the user clicks OK in each hotspot, each one will redirect them to a
different site.
View 17 Replies
View Related
Feb 14, 2008
There are so many plugins for modal dialogs that I don't know which one should I use and/or which one is the best... I mean, if there was only one plugin of this type including all the features from all the modal plugins, that would be cool. Which one do you think it's the best and why? Care to state the pros and cons of each plugin (or the ones you know/have already tested)?
View 24 Replies
View Related
Oct 9, 2009
(I have tightened up my original example) I'm trying to invoke modal dialogs from within a tabbed UI, and I'm confused about the behavior I'm seeing. The first time I display the UI, my dialog behaves as expected, I can pull the data out of the fields, everything's wonderful.
[Code]....
View 2 Replies
View Related
Feb 15, 2011
I'm using this colorpicker, and it is wonderful. However, I want to use it inside a jQuery dialog box (on an input tag inside a form just like the example in the website), but the problem is that when the colorpicker appears it is partially behind the dialog (on the z-axis) and therefore unusable. FYI changing the zIndex property on the dialog does not work.
View 1 Replies
View Related
Jul 20, 2005
I have a text box, after user input the value, a validate function
trigered. if the value is invalid, alert display, and also set focus
back to this control.
The alert displays, but when the click the 'OK' in the alert, the set
focus to this field does not work. see the code bellow:
if (run!="" && IsNumber(run)==false && decimalinputvalid(run,2)==0 )
{
alert('wow');
//first try doen not working
(setFocus) ? document.papercaltbl.printorder.focus() : ""
//seconde try doen not working
this.getField("printorder").setFocus();
//third try doen not working
document.getElementById("printorder").focus();
}
View 1 Replies
View Related
May 21, 2006
I have a form that uses javascript for validation and cost calculating to place an order.
If someone has their javascript disabled, they will be able to submit the form, but without the cost figures showing up.
I want to prevent the user from submitting the form, but alert them that they need to enable JS to fill in/submit the form?
Is this possible? What do I need?
View 5 Replies
View Related
Mar 25, 2011
im getting this error when on my script that rebinds functions and recreates dialogs, what could be the problem?I am using jQuery 1.5.1.min & jQuery UI 1.8.11
[Exception... "'Syntax error, unrecognized expression: "' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "<unknown>" data: no] Line 0
View 2 Replies
View Related
Feb 1, 2010
I have a script who work perfectly as an inline script :
<script>
I have tried to externalize it :
But when I click on the "lnk.addnote" link, the dialog is shown and immediately closed. In fact i can see the "ADD FIRED" alert, then the "CREATING DIALOG" alert but nothing appear. And finally I got this message into the Firebug console "$ is not defined".
View 1 Replies
View Related
Oct 21, 2011
heres my code:
Code:
<script language="JavaScript">
var checkobj
function agreesubmit(el){[code]....
i need to make it like if the button is clicked and there the agreement checkbox is not checked.. it should give an alert that the alert is not checked.. i know that would require a if and else statement but i cant figure out how to do it
View 3 Replies
View Related
Jan 31, 2006
I'm sure there's a way to accomplish this...without continually beating my head against my keyboard. Hopefully someone can point me in the right direction.
How do I add a hyperlink within a JavaScript alert box? And how would I add a mailto link within a JavaScript alert box? I've read the post a few below mine with the response being to use a DIV instead. How would I do that?
View 4 Replies
View Related
Aug 24, 2006
So, basically, I need to detect whether an alert window was thrown. I can't find where it's thrown from but I need to disable a button only if there were no alert windows thrown.
View 3 Replies
View Related
Dec 27, 2007
On some sites I have worked on, users can delete content from their site. When they go to delete an item, I take them to a page where I pull the item details of the item they are about to delete from the dbase, and say "Are you sure you want to delete so and so". They can choose Yes / No. Yes takes them to action that runs the SQL to delete the item from the dbase. No takes them to the previous page.
I have seen some sites that have managed this process differently, where, instead of being taken to another page, a little pop up box opens saying "Are you sure", with a Yes / No option on it. Yes takes you to delete the item, No leaves them on the page they are on.
Am I right that this method uses Javascript? I know that it won't work if javascript is turned off, but - most people don't turn it off...
View 7 Replies
View Related