Forum: JavaScript / DHTML / AJAX Jan 21st, 2009 |
| Replies: 13 Views: 2,595 thank you for the help essential
regards,
ayi |
Forum: JavaScript / DHTML / AJAX Jan 20th, 2009 |
| Replies: 13 Views: 2,595 this is the code that i got from you
give it a try
<html>
<head>
<script type="text/javascript"> |
Forum: JavaScript / DHTML / AJAX Jan 20th, 2009 |
| Replies: 13 Views: 2,595 i made changes in here in the resetLists
function resetLists(){
document.forms[0].select1.options[1].selected = true;
document.forms[0].select2.options[1].selected = true;
if... |
Forum: JavaScript / DHTML / AJAX Jan 19th, 2009 |
| Replies: 13 Views: 2,595 how do you save the cookie when someone click on reset button?
i am totally confuse now
coz i still cant save the reset value in the cookie
any help would be good |
Forum: JavaScript / DHTML / AJAX Jan 19th, 2009 |
| Replies: 13 Views: 2,595 thank you so much for the help
but when i refresh the page, it not saved to the cookie
so the color still like the one without default background |
Forum: JavaScript / DHTML / AJAX Jan 19th, 2009 |
| Replies: 13 Views: 2,595 your code is just reset the listbox but not reset the background color, font type and font size to default
function resetLists(){
document.forms[0].select1.selectedIndex = 1;
... |
Forum: JavaScript / DHTML / AJAX Jan 19th, 2009 |
| Replies: 13 Views: 2,595 sorry
i forget to attach the function to get the value to the listbox
<html>
<head>
<script type="text/javascript"> |
Forum: JavaScript / DHTML / AJAX Jan 19th, 2009 |
| Replies: 13 Views: 2,595 <script type="text/javascript">
function resetLists(){
document.forms["body"].elements["select1"].selectedIndex = 1;
document.forms["body"].elements["select2"].selectedIndex = 1;
}
</script>... |
Forum: JavaScript / DHTML / AJAX Jan 15th, 2009 |
| Replies: 5 Views: 829 This one is working example
but i want to change it into listbox instead of radio button
<html>
<head>
<script type="text/javascript"> |
Forum: JavaScript / DHTML / AJAX Jan 15th, 2009 |
| Replies: 5 Views: 829 this is my latest code
there are several option for user
background color = red, green, blue
font color = red, green, blue, black
font type = arial, times, verdana, tahoma
font size = small,... |
Forum: JavaScript / DHTML / AJAX Jan 15th, 2009 |
| Replies: 5 Views: 829 if i have lots of option like change the background color : blue, red, black, green and fontfamily : tahoma, arial, verdana fontcolor: red,green, blue
that will be mean that i have to make css... |
Forum: JavaScript / DHTML / AJAX Jan 14th, 2009 |
| Replies: 5 Views: 829 hi
i am new to javascript and i try to play around with it but i am stuck at the moment lol
hope that someone can help me check my code and tell me what is wrong with it
in the page the user... |
Forum: JavaScript / DHTML / AJAX Jan 13th, 2009 |
| Replies: 7 Views: 5,297 internet explorer 7
well thank you for your help anyway
i try to modify it |
Forum: JavaScript / DHTML / AJAX Jan 13th, 2009 |
| Replies: 7 Views: 5,297 to essential
the code you gave me is not working
it does not change the background and the font
i try to put text under div id="tube" but nothing happened
can you help me please |
Forum: JavaScript / DHTML / AJAX Jan 12th, 2009 |
| Replies: 7 Views: 5,297 it is not working
i can change the font type using button click
but i cannot use combo box
<a onClick=document.getElementById('hey').style.fontFamily='verdana'> Make it VERDANA!!!</a>
this... |
Forum: JavaScript / DHTML / AJAX Jan 12th, 2009 |
| Replies: 7 Views: 5,297 Hi
i make list box to change the font type, font color, font size and bacground color in listbox
this is what i made so far
<html>
<head> |