DomReady.ready(function() {
(function () {
var Username = document.getElementById("Username").onpaste = function() {Username()};
function Username(){
alert("Boom");
}
})();
});
I am getting too much recursion error in console. I don't know how to debug it, so if any one can point me out on how to debug it then it will be helpful.
I am getting too much recursion error in console. I don't know how to debug it, so if any one can point me out on how to debug it then it will be helpful.