I expect to recieve a json containing a list of url-s by a jQuery.getJSON() call, when I mouse over a div with a specific class.
I want to somehow attach the json’s data to the div and later on I want to access those urls by javascript.
How can I attach and access a list of data to a dom element?
You can attach data to a dom element with the jQuery data API.
Edit: you can attach any data you want …