I am getting the error \"Uncaught RangeError: Maximum call stack size exceeded\" on chrome. here is my jQuery function
$(\'td\').click(function () {
Mine was more of a mistake, what happened was loop click(i guess) basically by clicking on the login the parent was also clicked which ended up causing Maximum call stack size exceeded.
$('.clickhere').click(function(){ $('.login').click(); }); login