Created
July 14, 2011 04:20
-
-
Save pixelhandler/1081931 to your computer and use it in GitHub Desktop.
PXHLRbrowserName - add browser info to class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Pixelhandler namespace. */ | |
if (!window.PXHLR) { var PXHLR = {}; } | |
/** | |
* PXHLRbrowserName - add browser info to class | |
* @return sting like ... | |
* webkit, opera, msie, mozilla | |
* written in into the class attribute of obj | |
*/ | |
(function($) { | |
$.fn.PXHLRbrowserName = function(options) { | |
var defaults = { | |
obj: 'body' // using an element that should only be on the page one time. | |
}, | |
opts = $.extend({}, defaults, options); | |
return this.each(function() { | |
var self = {}; | |
if (opts.obj === '' || undefined) { | |
self = $(this); | |
} else { | |
self = $(opts.obj); | |
} | |
if ($.browser.msie) { | |
self.brwsname = 'msie'; | |
} else if ($.browser.mozilla) { | |
self.brwsname = 'mozilla'; | |
if (navigator.userAgent.indexOf('Mac') !== -1) { | |
self.brwsname += " mac"; | |
} | |
} else if ($.browser.webkit) { | |
self.brwsname = 'webkit'; | |
} else if ($.browser.opera) { | |
self.brwsname = 'opera'; | |
} | |
self.addClass(self.brwsname); | |
}); | |
}; | |
})(jQuery); | |
/** | |
* PXHLRbrowserName() on html element | |
*/ | |
PXHLR.htmlClassWithBrowserName = function() { | |
$(document).PXHLRbrowserName({ | |
obj : 'html' | |
}); | |
}; | |
/** | |
* to impement use.. | |
*/ | |
// PXHLR.htmlClassWithBrowserName(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment