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.
|
|
|
/**
|
|
|
|
* 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: {
|
|
|
|
viewport: jQuery(window),
|
|
|
|
adjust: {
|
|
|
|
method: 'flip',
|
|
|
|
},
|
|
|
|
my: 'left center',
|
|
|
|
at: 'right center',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|