Hi, Firstly, Great plugin!
Sorry, this answer is probably obvious but I'm not sure how to check for multiple browser types and apply the same PHP to them, then if they aren't those particular browsers, to do something else.
Currently I am just searching for IE, but I also want it to check for Chrome. My code for IE checking is below in one of my page template php files:
if ( is_IE($version) ) {
moover(22);
}
else {
moover (16);
}
So where would I put "is chrome" code into the lines?
Thanks for your help in advance.