multiple attributes jquery code example
Example 1: jquery attr multiple attributes
.attr({
target:"nw",
title:"Opens in a new window",
"data-value":"internal link" // attributes which contain dash(-) should be covered in quotes.
});
Example 2: jquery select element with two classes
$('.class1.class2') // select element that has both class1 and class2