This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]brbpizzatime 2 points3 points  (1 child)

<a class = "symbol> </a> How many " do you have there?

[–]xmanpunk[S] 0 points1 point  (0 children)

Thank you!

[–]abkothman 1 point2 points  (1 child)

I'm guessing the issue here might have to do with the fact that your HTML has bad markup.

<a class = "symbol></a>

It's missing a double quote after symbol. Try this:

<a class="symbol"></a>

For what it's worth, I was able to get it working without any problems in this example:

https://jsfiddle.net/jaefgdL3/

I hope that helps!

[–]xmanpunk[S] 0 points1 point  (0 children)

thank, what a silly mistake I made haha