Detect browser and add class in HTML (with jQuery)


Source Code:

<script>
$(document).ready(function() {
	 $("html").addClass($.browser);
});
</script>

Reviews and Comments