jQuery.awesomeCloud.plugin
jQuery.awesomeCloud.plugin copied to clipboard
awesomeCloud on multiple elements on the same page with the same class
I have several elements with the same class on my site that have different tags in them. Is it possible to use the same initialization for every one, or do I need to call it multiple times, adding different classes for each one?
Ok, I managed to make it that one canvas is in one element with
$(".element").each(function(){ $(this).awesomeCloud(settings); });
with settings predefined in a variable, but they are still all crammed in one element (even though in DOM they are all in their respective divs)