rebootcode / svg-edit

Automatically exported from code.google.com/p/svg-edit
MIT License
0 stars 0 forks source link

No excute method jquery.ajax in browser IE #950

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Hi, 

I have download and install Chrome Frame plugin for browser IE7,
And then I go to screen svg-edit design. In this screen i write function 
jquery.ajax for mycustom control to load image append to editor but not excute 
in browser IE.

With browser firefox, chrome, safari is OK.

this is my function:
$.ajax({
        type : 'POST',
        url : 'XXXXXXXXXXXXXXXX',
        dataType: 'html',
        cache: false,
        success: function(response) {
        var json = eval('('+response+')');
        alert(json);
        }
});

Original issue reported on code.google.com by tienvanp...@gmail.com on 24 Apr 2012 at 8:04