Code coverage report for js/main.js

Statements: 100% (4 / 4)      Branches: 100% (0 / 0)      Functions: 100% (3 / 3)      Lines: 100% (4 / 4)      Ignored: none     

All files » js/ » main.js
1 2 3 4 5 6 71 1 1 1      
(function($){
	$(function(){
		$('a').click(function(){
			$('body').append('<div id="jQueryAddedDiv">added through jquery</div>');
		});
	});
})(jQuery);