I'm attempting to addClass to an href, and then later run a function on that new class.
The problem is once the class is added, I can not get any js to work on it.
Here's a fiddle:
|
I'm attempting to addClass to an href, and then later run a function on that new class. The problem is once the class is added, I can not get any js to work on it. Here's a fiddle: |
|||
|
|
|
You are attaching the a.live event handler before the object has the class, move the handler inside the first one, ie
This is not the best way but I hope it shows you what is wrong. |
|||
|
|
|
You have a couple errors: This works:
You need to prevent the default event behavior, and also add a future-proof event observer such as |
|||
|
|
|
You can use the
|
|||
|
|
|
Here you go: http://jsfiddle.net/Skooljester/KcG8g/. You needed to use |
|||
|
|
|
Try this
The code isn't exactly how you had it but there are some issues. I used $('').live but you might want to bind the event inside of your first click event. Also know that if you return false from your events instead of using preventDefault only the first click event will fire. |
|||
|
|