Post: Can Someone Do This for me
10-10-2013, 02:51 PM #1
danman15001
Bounty hunter
(adsbygoogle = window.adsbygoogle || []).push({}); If anyone can do this for me it will be helpful.


Create pop-up boxes that actually DO something

Must have 2 alert boxes with “fun” alerts
Must have 2 confirm boxes that do something – i.e. continue on to the page it interrupted, download a file, play a song ect.
Must have 2 prompt boxes to collect information form the user, then use that information to “return” a response to the user


Bonus- Make the button to get the popup boxes be an image instead of a button

And Thanks for any of the help.
(adsbygoogle = window.adsbygoogle || []).push({});
10-10-2013, 08:49 PM #2
This is very basic javascript. Perhaps you should look at some tutorials on w3shools.com.
10-10-2013, 10:30 PM #3
Oklahoma
Are you high?
Yeah, This seems like its very basic so I recommend looking for these on google as you'll find more answers then here at NGU. This section is pretty dead.
10-11-2013, 09:41 PM #4
Hola
Big Daddy
Originally posted by danman15001 View Post
If anyone can do this for me it will be helpful.


Create pop-up boxes that actually DO something

Must have 2 alert boxes with “fun” alerts
Must have 2 confirm boxes that do something – i.e. continue on to the page it interrupted, download a file, play a song ect.
Must have 2 prompt boxes to collect information form the user, then use that information to “return” a response to the user


Bonus- Make the button to get the popup boxes be an image instead of a button

And Thanks for any of the help.


wow, thats random.. just thought about looking for some basic java and BOOM ill do it! Happy
10-11-2013, 10:11 PM #5
Default Avatar
Oneup
Guest
Originally posted by anton1453 View Post
wow, thats random.. just thought about looking for some basic java and BOOM ill do it! Happy


Java and javascript are not the same thing

The following user thanked Oneup for this useful post:

Complete Speed
10-11-2013, 10:15 PM #6
Hola
Big Daddy
Originally posted by 1UP View Post
Java and javascript are not the same thing


true mate, im working on java-script atm.. not java, java is a hell vs script :P
wich i will do next year probably
10-19-2013, 08:39 PM #7
SNMT| Havoc
Do a barrel roll!
Which language ?

In vb.net it would be this

If MessageBox.Show("Would you like to send a key request", "Key request", MessageBoxButtons.YesNo,
MessageBoxIcon.Question) = Windows.Forms.DialogResult.Yes Then
'Perform action of clicking yes
Else
'Perform action of clicking no
End If

C#

DialogResult dialogResult = MessageBox.Show("TEXT", "Some Title", MessageBoxButtons.YesNo);
if (dialogResult == DialogResult.Yes)
{
//Perform action of clicking yes
}
else if (dialogResult == DialogResult.No)
{
//Perform action of clicking NO
}

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo