Let's say, I would like to set the opacity of my .logo and .loader to opacity 1
I will do .set($(".logo"), {opacity:1}); and the same for .loader
The API says the .set method could accept an array of objects, how do I pass in an array of objects?
How do I combine them into 1 line of code?
.set([$(".ip-logo"), $(".ip-loader")], {opacity:1})
This isn't working.