Forum: JavaScript / DHTML / AJAX Jul 10th, 2008 |
| Replies: 2 Views: 7,723 sorry for the late reply, but this worked perfectly. Thanks :) |
Forum: JavaScript / DHTML / AJAX May 23rd, 2008 |
| Replies: 6 Views: 1,806 just so you know if you use javascript for this people can still paste things into the textbox, unless you disable ctrl+v and right clicking on the text box ;) |
Forum: JavaScript / DHTML / AJAX May 23rd, 2008 |
| Replies: 5 Views: 932 actually its not working in ie as far as I can tell, not just firefox. it gives just this:
<input type="text" name="banner" size="43" |
Forum: JavaScript / DHTML / AJAX May 23rd, 2008 |
| Replies: 5 Views: 932 do you have javascript off in your firefox browser?? |
Forum: JavaScript / DHTML / AJAX May 23rd, 2008 |
| Replies: 5 Views: 932 dude, you have comment tags around the whole thing <!-- ...... -->
I don't know if that might change anything by taking those out, but try it and see |
Forum: JavaScript / DHTML / AJAX May 23rd, 2008 |
| Replies: 2 Views: 7,723 Hi guys,
I am trying to make a javascript function that will add "000" to the end of a textbox value if the user presses k and also add "000000" if they press m. So i don't want the k or m to... |
Forum: JavaScript / DHTML / AJAX Feb 21st, 2008 |
| Replies: 3 Views: 1,257 thanks katarey, that was exactly what I was looking for |
Forum: JavaScript / DHTML / AJAX Feb 20th, 2008 |
| Replies: 3 Views: 1,257 Hi, i have a form on my website, and I would like to have a text box next to another text box that displays how many letters the user can type into the box eg:
<td><input type="text"... |
Forum: JavaScript / DHTML / AJAX Jan 31st, 2008 |
| Replies: 1 Views: 875 I am a Javascript newb, and I am haveing some trouble with my arguments.
function openMenu(tableName) {
document.getElementById(tableName).style.visibility="visible";
}
This is the code... |
Forum: JavaScript / DHTML / AJAX Jan 21st, 2008 |
| Replies: 6 Views: 6,716 woo that was me :P
Maybe there is a way to stop the user from pressing the control key (maybe display an alert box when they press control in the box) obviousley the same applies to right-click... |
Forum: JavaScript / DHTML / AJAX Jan 21st, 2008 |
| Replies: 6 Views: 2,585 thanks guys, this is how i fixed it:
if (opt=="none"){document.f.states.disabled=true}
else {document.f.states.disabled=false} |
Forum: JavaScript / DHTML / AJAX Jan 21st, 2008 |
| Replies: 6 Views: 2,585 Hi I have some code here that fills a dropdown box from an array depending on what is selected in another dropdown box. One of them is disabled, and i would like to stop that once an option has been... |
Forum: JavaScript / DHTML / AJAX Jan 18th, 2008 |
| Replies: 4 Views: 5,412 thanks naveen, once again you have solved my problem :) |
Forum: JavaScript / DHTML / AJAX Jan 18th, 2008 |
| Replies: 4 Views: 5,412 I am trying to make a form, with a textbox next to a select box. When the user selects an option in the select I would like the textbox to display some text to explain what each select option means.... |