Forum: JavaScript / DHTML / AJAX 20 Days Ago |
| Replies: 5 Views: 411 Thanks for the example Airshow. Just one more reason to use jQuery for me ;) |
Forum: JavaScript / DHTML / AJAX 20 Days Ago |
| Replies: 5 Views: 411 I think the for (var i in ...) is the problem. My guess is i is not an integer, but an object (element).
I think you should store the document.getElementsByClassName('someclass') in an array and... |
Forum: JavaScript / DHTML / AJAX 27 Days Ago |
| Replies: 4 Views: 875 Thanks. I had a lot of help too while learning jQuery. Glad to return the favour.
If it solved your problem, would you please mark this thread solved. |
Forum: JavaScript / DHTML / AJAX 27 Days Ago |
| Replies: 4 Views: 875 1. The reason I use div's is because span's often give me trouble.
2. toggleClass toggles a specific class on and off, so you can't use it like you do now
3. I gave my div the id #toggle, so I... |
Forum: JavaScript / DHTML / AJAX 29 Days Ago |
| Replies: 11 Views: 945 Here is an example of how you could do it using jQuery:
http://www.pritaeas.net/public/jquery/enable-submit/ |
Forum: JavaScript / DHTML / AJAX 30 Days Ago |
| Replies: 7 Views: 495 Yes. Although at the time of posting I wasn't sure if XMLHttpRequest was asynchronous , but now I'm sure it is. (Not every function call is asynchronous by default.) |
Forum: JavaScript / DHTML / AJAX 30 Days Ago |
| Replies: 7 Views: 495 Yes, that is what I mean, although I am not sure if XmlHttpRequest is a good example. |
Forum: JavaScript / DHTML / AJAX 30 Days Ago |
| Replies: 7 Views: 495 Asynchronous just means that a call is made to e.g. a function, but that the code (next statement) won't wait until a response is received. |
Forum: JavaScript / DHTML / AJAX Nov 11th, 2009 |
| Replies: 2 Views: 500 Like this ?
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
... |
Forum: JavaScript / DHTML / AJAX Oct 21st, 2009 |
| Replies: 9 Views: 1,326 Am I correct that you want to change the 1 2 and 3 into icons ? If that is so then I completely missed it before, sorry about that. I'll see if I can find a solution.
Is this what you mean?... |
Forum: JavaScript / DHTML / AJAX Oct 19th, 2009 |
| Replies: 9 Views: 1,326 Can you provide a link to your code ? I got it working:
http://www.pritaeas.net/public/jquery/cycle/hover.html |
Forum: JavaScript / DHTML / AJAX Oct 16th, 2009 |
| Replies: 9 Views: 1,326 Try this example:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"... |
Forum: JavaScript / DHTML / AJAX Oct 15th, 2009 |
| Replies: 9 Views: 1,326 Can you provide a link to where you read this ? I can't find this statement. I thought it only responds to click events. |