I would like to ask if i want to use Jquery Ajax to get a numeric value from a website, any ideas on how to start?
I would appreciate any suggestions. Thank-you!
Regards,
SWIFT
It should be something like
$.get("/yoururl", function (numberString) {
var i = parseInt(numberString);
alert(i);
});