Ajax Response throwing JavaScript Syntax Error -


function fnvalidatepcrhours(pcr, hoursentered)  	 {          $.ajax({  	        	type: "get",  	            url : "/tms/validatepcrhours.html?pcr="+pcr+"&hoursentered="+hoursentered,  	            cache: false,  	            success: function(data, textstatus, jqxhr)  			    {  			        alert(data);  			        return true;  			    },  			    error: function (jqxhr, textstatus, errorthrown)  			    {  			 		alert(errorthrown);  			 		return false;  			    }  	        });  	 	return false;  	 }

as response (in) server, script error. can 1 me on this?


Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -