can anybody help me to call a server side javascript method from the client HTML page (browser) and get back the object from the server and process through internet. as like google maps api.
ex as how we added: we added code to include server side java script from the html code. script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"
and we get the map object by calling the method of google map api.
var map = new google.maps.Map(document.getElementById("map"), settings);
Thanks. Satish.
I think you should take a look at how AJAX works.
You need to make an AJAX request to your server, which will respond with data to the browser.