dropx schrieb:
I know how to call from another host with javascript without using JQuery. my question: is it possible to solve this with just JQuery's ajax functions?
XmlHttpRequest ("Ajax") does not allow cross-domain requests. jQuery nor any other library can solve this, because it is not solvable.
The only way to call JavaScript from another host is by including/appending script elements.
-- Klaus