Jquery To Exec/Ping a PHP URL Instead of AJAX?

I know I can do an AJAX call through AJAX to a URL with Get or Post method to a url, but I don’t need any response. Is there a more efficient way.

Basically, I’d love to just ping/request a file like:

www.mydomain.com/util/counter.php?id=10607

that file just takes the ID and runs PHP/MySQL with it. I don’t need any feedback or response. Is there any better jquery option to just request/run/ping the external PHP file?

All feedback appreciated.

Cheers!
Ryan

Check out jQuery load. http://api.jquery.com/load/

Thanks, I ended up going with $.post, with blank in the function. It seemed the better of $.get, $.post, $.load

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.