James Radford
James Radford

Reputation: 1855

Popup required using qtip jquery

I have the following code that needs to create a popup over the relevant box within the grid when a certain css class is attached to an element. This css class is called PopupClass which can exist on any of the boxes. I'm failing to get the popup working with the following code. any help please? many thanks!!!!

You can see that using jquery the code iterates over each 'PopupClass' and appends varying styles to the popup although i'm failing to see it successfully.

http://jsfiddle.net/Y4EYS/3/

Upvotes: 0

Views: 302

Answers (1)

Tim at MastersAllen
Tim at MastersAllen

Reputation: 130

I'd try not using an .each loop to apply qtip because it automatically does that when calling...

$('.PopupClass').qtip();

It seems to work like this for me on your jsfiddle.

Upvotes: 1

Related Questions