Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

JavaScript Forum


You are currently viewing our JavaScript Forum as a guest. Please register to participate.
Login



Reply
Old 09-16-2008, 07:39 PM Help with function..
Skilled Talker

Posts: 68
Name: Avi Zolty
Location: Atlanta
Trades: 0
I want a simple button which when i click makes a pop-up.... whatever value i enter in there (as long as a valid 6 numerals) will become the background creating a way for me to easily test different hexcodes...
but this isn't working... i dunno why?
help please

<html>
<head>
<script type="text/javascript">
function askfor( )
{
colortest=prompt("Type Hex-code you wish to test","here:");
}
</script>
</head>
<body>
<form>
<input type="button" value="hexcode testor"
onClick="askfor() " >
<body bgcolor='"#"+colortest'>
</form>
</body>
</html>
Zoltar1992 is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 09-16-2008, 08:10 PM Re: Help with function..
nyef's Avatar
Ultra Talker

Posts: 265
Name: Lucas
Trades: 0
Try this:

<html>
<head>
<script type="text/javascript">
function askfor( )
{
colortest=prompt("Type Hex-code you wish to test","here:");
document.body.style.backgroundColor='#'+colortest;
}
</script>
</head>
<body>
<form>
<input type="button" value="hexcode testor"
onClick="askfor() " >
</form>
</body>
</html>
__________________
~nyef

Please login or register to view this content. Registration is FREE

Last edited by nyef; 09-16-2008 at 08:11 PM..
nyef is offline
Reply With Quote
View Public Profile Visit nyef's homepage!
 
Old 09-16-2008, 08:18 PM Re: Help with function..
Skilled Talker

Posts: 68
Name: Avi Zolty
Location: Atlanta
Trades: 0
Thanks very much... i'll go test now.
Zoltar1992 is offline
Reply With Quote
View Public Profile
 
Old 09-16-2008, 08:21 PM Re: Help with function..
Skilled Talker

Posts: 68
Name: Avi Zolty
Location: Atlanta
Trades: 0
worked thanks so much!!
Zoltar1992 is offline
Reply With Quote
View Public Profile
 
Old 09-17-2008, 02:12 PM Re: Help with function..
nyef's Avatar
Ultra Talker

Posts: 265
Name: Lucas
Trades: 0
You're welcome =)
__________________
~nyef

Please login or register to view this content. Registration is FREE
nyef is offline
Reply With Quote
View Public Profile Visit nyef's homepage!
 
Reply     « Reply to Help with function..
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.18493 seconds with 12 queries