Using Ajax Show Open New Window
in this code there is some error related to the link and it is not opening the page .there error may be in the link that i am giving and it is not showing the alert in which it wil
Solution 1:
You need to run a webserver and then request your resource from that using a network name (e.g. http://localhost/cart/welcome.php
).
A URL to a local filepath would start with file:
instead of http:
, but most implementations of XMLHttpRequest would refuse to support it, and it wouldn't cause the PHP to be executed (since PHP, in this context, is a server side programming language).
Post a Comment for "Using Ajax Show Open New Window"