*EDIT ^^ THIS QUESTION IS DIFFERENT ...
Im using this code below to detect if users are on Firefox, but I want to take it one level farther and only target mac users on Firefox, any advice?
var FF = !(window.mozInnerScreenX == null);
if(FF) {
// is firefox
} else {
// not firefox
}