Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
5answers
80k views

Javascript Confirm popup Yes, No button instead of OK and Cancel

Javascript Confirm popup, I want to show Yes, No button instead of OK and Cancel. I have used this vbscript code: <script language="javascript"> function window.confirm(str) { ...
16
votes
8answers
12k views

How to show the “Are you sure you want to navigate away from this page?” when changes committed?

Here in stackoverflow, if you started to make changes then you attempt to navigate away from the page, a javascript confirm button shows up and asks: "Are you sure you want to navigate away from this ...
15
votes
9answers
36k views

Can you wait for javascript callback?

I'm trying to use the jQuery alerts dialog library from http://abeautifulsite.net/notebook/87 instead of the default alerts (which look pretty awful in my opinion). This seems to be a great library, ...
11
votes
10answers
2k views

Is a “Confirm Email” input good practice when user changes email address?

My organization has a form to allow users to update their email address with us. It's suggested that we have two input boxes for email: the second as an email confirmation. I always copy/paste my ...
10
votes
2answers
2k views

Do browsers localize the OK and Cancel buttons of the javascript confirm popup?

In a multi-language web site, can I rely on the javascript confirm to translate the text of the Ok/Cancel buttons? If so, is it related to the browser or OS language setting?
4
votes
1answer
255 views

HTML Form submission with javascript confirm delays on Google Chrome

I realized that there's some delay on form submission with javascript confirmation on Google Chrome during my development. So I tried test with small html page to make sure whether the delay is ...
4
votes
2answers
200 views

Powershell New-Item: How to Accept Confirmation Automatically

I'm trying to create a new directory on a network drive using a powershell script but it keeps prompting me "Confirm: Are you sure you want to perform this action ...." Is there a way to ...
4
votes
3answers
380 views

JavaScript Form Submit - Confirm or Cancel Submission

For a simple Paypal form with an alert that asks if fields were filled out correctly, I need a function that does this: Shows an alert box when button is clicked Offers two options: If "OK" is ...
4
votes
8answers
160 views

Is there an “are you sure” for stored procedure execution? :)

I have a stored procedure which is doing a lot of delete. Hundreds of thousands of records. It is not going to be runnable from the application, but still, i am concerned, that one of my clients ...
4
votes
3answers
2k views

Silverlight Confirm Dialog to Pause Thread

I'm trying to do a confirmation dialog using Silverlight's ChildWindow object. Ideally, I'd like it to work like MessageBox.Show(), where the entire application halts until an input is received from ...
4
votes
3answers
3k views

custom choices in javascript confirm dialog

How to write a confirm dialog in javascript with custom choices? Instead of just "Ok" and "Cancel", I would like to have for example "This" "That" and "Other".
3
votes
2answers
93 views

Confirm iPhone user

I have developed an iPhone application for a café. In the application you can order takeaway food and therefore I need a way to be sure that there are no orders in a "fake" name (e.g. a person who ...
3
votes
2answers
744 views

jQuery ui confirm dialog on multiple forms

I have a few forms on the same page and I want to add a confirm dialog to all of them using the same code. They all have a class of confirm-form and the title of the confirm dialog should be generated ...
3
votes
3answers
1k views

JavaScript: Confirm dialog box that shows value from a text box

Is there a way to have a confirm dialog box display the value a user typed in a text box on a form? (For example, if the user types 100.00, I'd like the dialog box display a message something like, ...
3
votes
3answers
942 views

How do I add confirm function to links in jQuery so that the dialog always appears?

I have a HTML table that displays rows of records and has a column on the end with a delete link. Each delete link has a class of confirm-delete. I need to have a confirm dialog popup on click and as ...
3
votes
1answer
4k views

jConfirm with this existing code

I need help to use jConfirm with this existing code (php & Jquery & jAlert). function logout() { if (confirm("Do you really want to logout?")) window.location.href = "logout.php"; } ...
3
votes
3answers
3k views

Confirm alert box in javascript and ASP.net like Hotmail

i am trying to create a confirm box similar to Hotmail's Confirm box when we click on the Empty Folder in the Junk Mail folder. but i am unable to figure it's working and the logic behind it. i am ...
2
votes
2answers
62 views

How can i send email making a confimation link to click it?

models.py: class Users(models.Model): username = models.CharField(max_length=255) slug = models.CharField(max_length=255, default='0') password = models.CharField(max_length=300) ...
2
votes
1answer
65 views

SimpleModal confirmation and proceeding to original href

I've search and can't find a solution. Hopefully I'm overlooking something simple. What I'm after is a standard jquery confirmation, a la: $('.confirm').click(function(){ var answer = ...
2
votes
5answers
105 views

Javascript - confirm() inside a jquery .click() function

I have the following $("element").click(function() { var foo=bar; if ( foo == "bar" ) { confirm('Dialogue'); } }); But I would like to bool the confirm function. I've already tried ...
2
votes
1answer
276 views

Bug with Safari 5.1 and Javascript confirm() function

UPDATE BELOW I think I've just found a really weird bug in Safari 5.1, on OS X Lion. I can't confirm for sure whether this bug existed on earlier versions of Safari, but I sort of suspect not (given ...
2
votes
2answers
508 views

ASP.net - Button - Javascript Confirm dialog - execute SOME server-side code?

I have a simple ASP.net page where users can edit information about themselves. When "Edit" button is clicked, the form goes into edit mode and I display "Save" and "Cancel" buttons, which behave as ...
2
votes
2answers
220 views

Jquery UI dialog in place of javascript confirm

I have a bunch of validation javascript processes with confirms. I want to use jquery ui dialog, but I need to return true for the rest of the validation processes. For example: var where_to_coupon ...
2
votes
2answers
108 views

Confirm line delete

I have created a function to search all double lines in a file. I use the "line-number"g/.*/d to delete the line. However I would like to confirm if a line has to be deleted or not, like the ...
2
votes
1answer
289 views

Not requiring users to confirm email with Devise

I'm using Devise in a Rails 3 (3.0.5) project. I want to use the confirmable module to allow users to confirm their email address, however I don't want to block them if they do not confirm. I have ...
2
votes
2answers
2k views

Javascript confirm message problem

I have a popup confirm box which i am able to show like below. But i dont know if the user clicked ok or cancel. ScriptManager.RegisterStartupScript(this, this.GetType(), "ajax", ...
2
votes
1answer
4k views

jQuery Confirm Dialog in ASP.NET Button OnClientClick

I have a TemplateField in a GridView in an UpdatePanel with a button called btnDelete. Rather than the standard OnClientClick="return confirm('Are you sure?')" I'd like to use jQuery Dialog. So far, ...
2
votes
2answers
7k views

Yes or No confirm box using jQuery

I want yes/No alerts using jQuery,instead of ok/Cancel button. jQuery.alerts.okButton = ' Yes '; jQuery.alerts.cancelButton = ' No '; jConfirm('Are you ...
2
votes
4answers
365 views

Javascript - How many arguments are there for confirm?

How many arguments are there for confirm box? What does var del=confirm("Are you sure?","Delete",""); means?
2
votes
2answers
2k views

can I override/redefine “global” Javascript functions, like confirm() and alert()?

I want to do some browser automation, and those pesky confirm/alert boxes are a real pain. Disabling javascript completely in this case is not an option, unfortunately. Well, so I was wondering, can ...
2
votes
3answers
866 views

HTML Form and Javascript Confirmation

I'm having a problem with submitting a form and Javascript confirmation. Basically, the following Javascript is called when the "submit" button is pressed. function confirmation() { var answer = ...
2
votes
3answers
3k views

onbeforeunload confirmation screen custumization

Is it possible to create a custom confirmation box for the onbeforeunload event in a browser? I tried but then I get 2 confirmation boxes (one from me which is nothing more than return confirm... and ...
2
votes
8answers
2k views

How can I confirm and then disable a button in asp.net/javascript

I have a standard ASP.NET 2.0 web page with a Delete button on it. What I need and can't figure out how to pull off is when the user presses the delete button a confirm dialog popups asking the user ...
2
votes
9answers
8k views

Javascript working with ASP.NET code behind

I have to make a delete button for a simple intranet forum. I would like to have a javascript alert box (or equivalent) asking for confirmation when deleting posts. However, I've found it difficult ...
2
votes
2answers
4k views

MSHTML - Auto Click for JavaScript confirm dialog

I am trying to automatically parse/submit a web page using MSHTML (in C#.Net 3.1 WPF WebBrowser control). I can fill the forms, click buttons, and navigate pages without problems. But I do not know ...
1
vote
1answer
62 views

Exit confirmation in Javascript with Telerik controls

I'm using Telerik controls for my project. On my page, there are some links to another page, several radtextboxes and a radbutton (it causes a postback). When the textbox values are changed, the ...
1
vote
3answers
66 views

how to modify the code to delete item after I confirm

My code make deleting item before I confirm it. How can I make a change to let it deletes item after I confirm it. Here is javascript code: <script type="text/javascript"> var _source; ...
1
vote
5answers
95 views

php javascript confirm box for delete

The below code is in PHP echo "<input type='submit' name='delete' value='$t2[0]' class='delete_button' onclick='return confirm('Please Confirm Delete');'>" I am trying to create a delete ...
1
vote
3answers
90 views

Best unobtrusive way to add JQuery confirm to an arbitrary element

I'm new to jquery, and am looking for a good unobtrusive way to add a jquery replacement for javascript "confirm" to a HTML elements. Specifically I want to be able to use it for ASP.NET Buttons, ...
1
vote
2answers
92 views

How to combine two jQuery functions?

The first function (can be found at http://nadiana.com/jquery-confirm-plugin): $('#confirm').confirm( { msg: 'You are about to delete gallery and all images related to that gallery. Are you ...
1
vote
1answer
326 views

Add marker to Google Map with a JQuery dialog confirm

I have a Google Map V3 map. When a user clicks on it an confirmation alert popup asking them if they want to add the marker there. If they say yes then marker is added. Code is as below; EDIT: ...
1
vote
2answers
235 views

javascript Confirm replacement with return true/false

Since jquery UI dialog does not support returning true/false, I need some other way to replace a javascript confirm. It has to return true/false, so that my validation processes in javascript will ...
1
vote
1answer
100 views

Return confirm value from jquery .each function

I have a click handler on a button that uploads a file. It checks the contents of each of the cells of the first column of a table against a predefined value and only proceeds on user confirmation. I ...
1
vote
1answer
143 views

Can I stop a post back by using javascripts confirm?

I have an aspx page with a asp.net button on the page: <asp:LinkButton ID="btn_Delete" runat="server" OnClick="btn_Delete_Click" OnClientClick="ConfirmDelete();" Text="Delete" /> Confirm ...
1
vote
2answers
431 views

How to style default confirm box with only css?

I would like to style standard window.confirm without using any additional JavaScript code, only with CSS. Is it even possible? And if it is, how can I do it?
1
vote
2answers
401 views

confirm alert coming twice called when onbeforeload event

I have a confirm box on beforeload event - the code is as follows: window.onbeforeunload = function(){ //alert('leaving ... ' + is_edited ); if (is_edited == true) { ...
1
vote
2answers
139 views

Rails - Dynamically switch confirm messages in a link_to

I am facing this ugly duplication in order to display different confirmation message in my view. <% if current_user.password.nil? and current_user.services.count == 1 %> <%= link_to ...
1
vote
1answer
124 views

Can I use a confirm() prompt inside a function? How?

How do I cause the cancel button to not process the save on the page. I am trying to only initiate the prompt when element id 'item' is changed. I get the OK and CANCEL prompt very well indeed. But ...
1
vote
3answers
510 views

JavaScript confirm cancel button not stopping JavaScript

I have a delete button that is tied to some comments on a page i have. When you click the delete button i am trying to get a confirm dialog box to pop up asking if you are sure you want to delete the ...
1
vote
2answers
859 views

Are custom buttons possible in an alert box?

Hi I have been looking to create custom buttons in an alert box I would like them to say Go and Cancel instead of OK and cancel onClick="if(confirm('Would you like to continue?'))

1 2 3