A Cross-Domain AJAX URL works in Gecko & Webkit but not in Opera & IE
How does this cross-domain request work in FireFox, Safari & Chrome and not in IE/Opera ?
- $(document).ready(function()
- {
- $.ajax(
- {
- url: "http://picasaweb.google.com/data/feed/api/user/snmoorthy48?kind=album&alt=json",
- success: function(data)
- {
- alert(data);
- if (console) console.log(data);
- if (data == "") alert("Invalid User");
- }
- });
- });