Forum: JavaScript / DHTML / AJAX Dec 31st, 2008 |
| Replies: 1 Views: 901 Nevermind,
I was able to do this on my own by finding a few resources on the web. Here's what I came up with:
javascript:javascript:var baseURL... |
Forum: JavaScript / DHTML / AJAX Dec 30th, 2008 |
| Replies: 1 Views: 901 I was wondering how I could create a bookmarklet that would take someone's current location (href) and redirect to another page with the href as an "argument" to part of a new url. For example:
... |
Forum: JavaScript / DHTML / AJAX Dec 16th, 2006 |
| Replies: 13 Views: 13,865 Oh, and here's another variation:
var dropdowns = document.forms[0].category;
var newCatDrop = document.forms[0].newcat.value;
for (var i = 0;i <... |
Forum: JavaScript / DHTML / AJAX Dec 16th, 2006 |
| Replies: 13 Views: 13,865 I appriciate you taking the time to help me out the past few days. The funny thing is, the javascript was sooo close to what you gave me. So, thank you alot. It worked. Here's the new javascript... |
Forum: JavaScript / DHTML / AJAX Dec 15th, 2006 |
| Replies: 13 Views: 13,865 Could you possibly help out. Telling me and showing me are two different things. I have exhausted all my javascript skills (which isn't much).
Here is my newest attempt:
var... |
Forum: JavaScript / DHTML / AJAX Dec 15th, 2006 |
| Replies: 13 Views: 13,865 Now I have this:
// Trying to code up a duplicate stopper!!
var dropdowns = document.getElementsByName("category");
var newCatDrop = document.forms[0].newcat.value;
... |
Forum: JavaScript / DHTML / AJAX Dec 15th, 2006 |
| Replies: 13 Views: 13,865 How exactly would I do that? I'm pretty good with programming - when it comes to loops - I fall... hard.
I'll try my best, best if you could help me out, that would be great. |
Forum: JavaScript / DHTML / AJAX Dec 15th, 2006 |
| Replies: 13 Views: 13,865 Alright, having some issues :(.
Here's what I have so far. Here's the form:
<form method="post" action="doit.php" name="content">
<p><label id="datBegin">Date</label><br />
... |
Forum: JavaScript / DHTML / AJAX Dec 14th, 2006 |
| Replies: 13 Views: 13,865 You have any sample code? Something to start me along? I know what you mean, like a for() loop of some sort, right? |
Forum: JavaScript / DHTML / AJAX Dec 14th, 2006 |
| Replies: 13 Views: 13,865 I have a little problem. I have a drop down menu that contains various different entries. I am allowing the user to also have a text box right next to the drop down menu where they can specify a... |