9
votes
2answers
97 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?
1
vote
3answers
46 views
How to show the content of the form just entered in the “:confirm =>” option on Ruby on Rails
I am trying to have a way of confirming the information entered before actually saving it to the DB
Considered making an individual confirmation page as discussed here
…
0
votes
3answers
75 views
jQuery/Javascript confirm coming up twice
For some weird reason i'm getting my confirm box coming up twice. here is my code:
$(".DeleteComment").live("click", function(){
var CommentID = $(this).attr("rel");
var confirm
if …
1
vote
1answer
181 views
jConfirm with this existing code [Solved]
Hi,
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";
…
1
vote
3answers
57 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".
0
votes
4answers
159 views
JavaScript Confirm Does Not Work?
Hi, I use girdview. and for deleting I use LinkButton in each row.
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if(e.Row.RowType == DataControlRowType.DataRow)
…
1
vote
4answers
112 views
livequery - confirm()
I don't get why this confirm() call fires up even though i hit "no". Can you tell me what i'm doing wrong?
$('.deleteButton').livequery('click',function(){
if(confirm('Are you sure?')){
…
0
votes
1answer
201 views
call js confirm from code behind
codebehind
Protected Sub btnDelete_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnDelete.Click
Dim ResourceObject As Object
Dim js As [String] = (vbCr & …
0
votes
3answers
195 views
Ask for confirmation on page unload
On StackOverflow when you're asking a new question, you have enter the question and if you decide to navigate away from the page you get an "Are you sure" confirmation.
I'd like to do the same in my …
0
votes
5answers
402 views
C# .NET and Javascript Confirm
I have a C# ASP.NET web page with an xml file upload form. When the user clicks 'upload', a javascript confirm alert will pop up asking the user, "is this file correct?". The confirm alert will …
1
vote
2answers
214 views
Calling another jQuery function if confirm is true..
Hi all, I'm trying to call another jQuery function if confirm is true, here's the code:
jQuery("#adminForm_1").submit(function () {
var empty = false;
jQuery(":input", …
6
votes
8answers
1k 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 …
0
votes
1answer
55 views
jQuery confirmation not working in Chrome
Hi, I'm trying to create a basic confirmation box which prompts users with a simple confirm/cancel when they click on a link.
This is working fine in FF and IE, however Chrome just seems to ignore …
1
vote
2answers
384 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 …
0
votes
3answers
204 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 = …
