Tagged Questions
The javascript-alert tag has no wiki summary.
23
votes
5answers
46k views
How to edit a JavaScript alert box title?
I'm generating a JavaScript alert with following code in C# .NET page:
Response.Write("<script language=JavaScript> alert('Hi select a valid date'); </script>");
It displays an alert ...
3
votes
2answers
136 views
Changing the way a JavaScript Alert() or Prompt() looks
Is there any way to change the looks of an alert or prompt in javaScript ? things like adding an Image , changing the font color or size and what ever will make it look different ?
thanks in advance
...
2
votes
2answers
135 views
Code that will alert DOM Position [closed]
Possible Duplicate:
JQuery to check for duplicate ids in a DOM
Suppose i have a code:
<div id="one">
<div id="two"></div>
<div id="three"></div>
...
2
votes
1answer
365 views
Disabling alert window in WebBrowser control
i am using VS 2005 and WebBrowser control. When i using component to navigate to specified page i get scenario error, like "On this page javascript scenario error" and two buttons: yes or no executing ...
2
votes
3answers
411 views
What would be a walkaround for JavaScript alerts that are generated in a page's onload() using Selenium?
I am automating a form page using Selenium RC (C#). After I click 'Submit' button, I get an alert 'Records Edited Successfully!'. The title of this alert box is 'The page at http://www.******.com ...
2
votes
5answers
1k views
Is there a JavaScript alert that doesn't pause the script?
I'm looking for something like alert() but doesn't "puase" the script.
I want to display an alert and allow the next command, a form submit(), to continue. So the page will be changing after the ...
1
vote
1answer
40 views
Is this the right way to handle javascript alert dialogs using WebDriver?
It seems that in the ASP.NET WebDriver API, executing the following when there is no javascript alert present results in an exception:
browser.SwitchTo().Alert();
IE and FF both throw a ...
1
vote
1answer
144 views
Handling javascript popup in watir
I am using autoit to handle javas script popup code as
autoit.WinWaitActive("[Class:#32770]")
result =autoit.ControlClick("[Class:#32770]","","Button1")
But when I click on the button to open the ...
0
votes
3answers
77 views
javascript confirm action using document.write
I have a javascript function that I am trying to call when the confirm is true. I am using document.write because the source document is a .js file, not html.
Before the true condition is executing, ...
0
votes
1answer
71 views
Chrome omitting words from my alert box
I have the following code on a webpage being served by a coldfusion 9 server.
alert("Doing this now may result in loss of data")
and when I trigger the alert box this is what I see.
Doing this ...
0
votes
2answers
183 views
alert message in Multilingual website
i am using resource files for showing html content(like label names ) in my multilingual website.The resource files are different for different countries.The website is built on Asp.Net MVC3.
I am ...
0
votes
0answers
55 views
jQuery's document ready faulty on Nokia? (Alert fixes jQuery in Nokia. Suggest alternatives?)
I have some jQuery running on a mobile web site that does some layout calculations and resizes a few elements.
This was working fine on the browsers we support--even Nokia's--but I then received ...
0
votes
4answers
115 views
Alert not working what's wrong in this
I write the following to alert but it is not displaying the alert box what's wrong in this
protected void Timer1_Tick(object sender, EventArgs e)
{
string str = string.Empty;
str = "Total ...
0
votes
1answer
625 views
handle JS alert using IE webdriver, Selenium
I need to click on a cancel button for a Java based application.
I am using IE Driver, Eclipse IDE and my application only supports IE.[i am scripting in Java]
Here is the situation,
Login to the ...
0
votes
1answer
196 views
setInterval works when alert is included in if conditions, else it works only once
this question might be seems to be the similar question asked previously but its not.
My question is following :
I have code snippet as follows :
var i = 0;
function func2() ...
0
votes
2answers
362 views
default sound for javascript alert() box
I've noticed that javascript alert() box plays the system sound "exclamation" found in Control Panel > Sound > Sounds tab > Windows > Exclamation. So changing the "exclamation" wav file there changes ...
0
votes
2answers
235 views
Trigger a Javascript Alert from a Django backend event
I have a Django application that when submitting information, does some backend checks, and in a rare case that the checks fail, I need a Javascript Alert to be displayed. How do I trigger the JS ...
0
votes
1answer
683 views
Change the title of message box in ASP.NET
I am displaying a message box using this code
ClientScriptManager.RegisterStartupScript(typeof(Page), "successfull", "alert('Your email has been sent successfully!'); window.location = ...
0
votes
2answers
444 views
Ruby on Rails Mysterious Javascript Alert box with cookie information
I have a problem in a Ruby on Rails app that I am working on. I have been working on the app for months and I have never had this problem before and after a bit of Google searches I think that somehow ...
0
votes
2answers
250 views
Javascript alert box
So I am trying to make it so a user clicks a button to email me, a js alert box pops up with a message and then after they click ok it goes forward with the email link. This is my code thus far:
...
0
votes
6answers
486 views
Pass Javascript Alert a Value
I'm looking for a simple javascscript alert box. I need to be able to pass the alert box a string of text.
Is something like this possible? My syntax is probably wrong.
<html>
<head>
...
0
votes
2answers
1k views
Capturing Javascript Alert in Webbrowser Control
Using the webbrowswer control to cruise a site. Sometimes errors occur which involve a javascript popup box. I would like to do a couple of things when this happens.
Know when a javascript alert ...
-1
votes
1answer
570 views
Use Jquery's jConfirm like JS's confirm method
I have an anchor on click of which I want to call jquery's jconfirm method and I am having problem in using it directly as I would do for confirm method in javascript
<a ...