Bento box search with multiple targets
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
440 B

/**
* Created by ppound on 2014-06-19.
*/
function qtipify(divs, content, title){
for (index = 0; index < divs.length; index++) {
jQuery('#' + divs[index]).qtip({
content: {
text: content[index],
title: title,
},
style: "qtip-light",
position: {
my: 'left center',
at: 'center',
},
});
}
}