|
-
Dec 6th, 2005, 06:02 PM
#1
Thread Starter
Fanatic Member
Creating actions on push button click
Hello all,
How do I make a message box or something change on a push button's click or a drop down menu's selection?
-
Dec 6th, 2005, 07:48 PM
#2
Fanatic Member
Re: Creating actions on push button click
Your going to need to add a lot more context to your question.
-
Dec 6th, 2005, 08:04 PM
#3
PowerPoster
Re: Creating actions on push button click
<input type="button" onClick="javascript:alert('is this what you mean?')">
Something like that?
-
Dec 6th, 2005, 08:11 PM
#4
Thread Starter
Fanatic Member
Re: Creating actions on push button click
Yes that's exactly what I want. Thanks man!
But I have a few other questions.
I tried this with no results
HTML Code:
<input type="button" onClick="javascript:information('Hello?')">
Can you give me a list of all possible types of alert messages and possibly how to change the title of the message boxes? I wish this were as easy as VB
-
Dec 6th, 2005, 08:24 PM
#5
PowerPoster
Re: Creating actions on push button click
http://www.javascriptkit.com/javatutors/alert2.shtml
I don't believe your allowed to change the title, as a security precaution, since you could pop the box up on the page and try and make it look like something coming from windows.
-
Dec 6th, 2005, 08:31 PM
#6
Thread Starter
Fanatic Member
Re: Creating actions on push button click
Dude nice site.
Haha wish I could give you more than just 1 rep
-
Dec 6th, 2005, 08:37 PM
#7
Thread Starter
Fanatic Member
Re: Creating actions on push button click
But what I just realized is that is java, I am looking for straight up HTML. Sorry that I didn't specify but your first code you gave me worked.
All I'm using is NotePad to write the HTML in
-
Dec 6th, 2005, 10:02 PM
#8
PowerPoster
Re: Creating actions on push button click
No, thats JavaScript, just as,
HTML Code:
onClick="javascript:information('Hello?')"
is Javascript.
You need to do a combination of HTML + Javascript for what your after.
so onClick="javascript rompt('Sup!')"
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|