Tagged Questions
5
votes
2answers
565 views
JavaScript Preloading Images
Can you tell me if the function I wrote below is enough to preload images in most if not all browsers commonly used today?
function preloadImage(url)
{
var img=new Image();
img.src=url;
}
I ...
5
votes
6answers
4k views
Display a warning when leaving the site, not just the page
This sounded like something almost impossible to do when it was presented to me. I know you can display a dialog box to confirm when leaving a web page. But is it possible to display a dialog box when ...
3
votes
3answers
86 views
Gmail-style Exit Message
I realize this is likely a duplicate, but I've been googling/SOing for a day now and I can't find a satisfactory answer. If there is an answer already on SO, please send me there.
I have a client ...
3
votes
4answers
1k views
How can I print an HTML document from C# or javascript without user confirmation?
I would like to send a print job to the printer without the user having to click "okay" on the print confirmation dialog window.
Either C# code-behind or javascript would be fine, whichever works ...
2
votes
3answers
229 views
Confirmation with save and discard button
How can we create a confirmation alert in javascript with a save and discard button in it?
If we use the code
confirm('Do you want to save it?');
We will get an alert box with ok cancel.
How can ...
2
votes
4answers
649 views
HTML5 php contact form script confirmation
I'm having some trouble with a script confirmation. By standard it's set to hide the contact form and display a confirmation message but it's not working for all browsers. After some tests I realized ...
1
vote
0answers
75 views
Confirmation box appears twice
I have a confirmation box in javascript. The confirmation box works but there is a slight glitch. When the confirm box apears, if I click OK or cancel, the box will close and open again asking for a ...
1
vote
1answer
150 views
Accessing results of JavaScript's “window.confirm” in regular Java
I have a Java page that uses embedded JavaScript to create a confirmation message (I'm using window.confirm). I would like to use the results of the user's selection (either "Yes" or "No") outside of ...
1
vote
1answer
271 views
Confirmation on submit
I have a form that submits information to a database. How can I make it so that when I click the submit button, I get an alert that asks me if I really want to submit it and when I click "Yes" it ...
1
vote
3answers
161 views
jQuery - combining “confirm” and “someOtherAction”
I have the following code that simply uses a jquery ui modal dialog to "confirm" any click on a link. If they click OK, then it sends them to the original link. It works fine, so don't bother reading ...
0
votes
1answer
46 views
Cannot get confirmation box working at it is providing errors on my code because of it
I have a slight problem with my confirmation.
What happened before I included a confirmation box in my code was that when I click a button (name=preQuestion), if there are any validation errors then ...
0
votes
3answers
49 views
How to show confirm box like StackOverflow's confirmation box?
Ask a question, and while editing the body of your question, click on some link on the page. StackOverflow's script knows that you are not finished yet, and warns you about loosing your unsaved data. ...
0
votes
4answers
227 views
Try to combine javascript confirm box with php post method?
Here is the Javascript code, just for test:
<script type="text/javascript">
function show_confirm()
{
var r=confirm("Are you sure?");
if (r==true)
...
0
votes
1answer
129 views
How to achieve a return confirm like dialog but using jgrowl?
I am working with a forum script (simple machines forum)
It is using this kind of javascript confirmation messages:
<a ...
0
votes
1answer
20 views
trouble with confirmationboxes when submitting a form
I'm trying to compare some values of select fields.
When submitting my form I want to check whether the values are equal.
Well ... I've got two problems here.
The values aren't compared the first ...
0
votes
2answers
3k views
Javascript Confirm Delete in One PHP File (on href)
<p><span class="linky"><a href="deletephone.php?id=' . $row['id'] . '">Delete Phone</a></span></p><br />
I have the above code that I am using to link to a ...
0
votes
2answers
1k views
How to run JavaScript prior to System.Web.UI.Timer OnTick?
I need a client-side script to confirm that the Timer's OnTick event can proceed.
How do I invoke CanContinue() before the Timer1 postback occurs?
How do I cancel the postback if user selects ...
-1
votes
1answer
97 views
Prompt user for confirmation when clicking a link
I have a link that does some potentially dangerous function (delete something). I want to prompt user if he really wants to do it. I want to do it with javascript and it should be very simple.
My ...