showing results for - "jquery ajax responsetext"
Louis
07 Apr 2016
1// To get jquery AJAX calls working
2// remember to add Jquery to your head tag:
3
4<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
5
6var response = null;
7var responseTextValue = null;
8
9$.ajax({
10	type: "GET",   
11	url: "<Your url text>",   
12	async: false,
13	success : function(data) {
14		// Here you can specify that you need some exact value like responseText
15		responseTextValue = data.responseText;
16	    response = data;
17	}
18});
19