Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a tag in my jsp as follows:

<a href="<%=rest.getString(5)%>" onclick="javascript: generateLog(<%=id%>,<%=id2%>,<%=id3%>);">xxxx</a>

The function generateLog is defined as follows:

function generateLog(id1,id2,id3) {
        $.ajax({
           type: "POST",
           url: "generateLog.jsp",
           data: "id1=" + id1+"&id2="+id2+"&id3="+id3,
           cache: false,
           async: true
         });

}

In the generateLog.jsp, code is written to insert the click ids into a table. It works fine in IE, Mozilla Firefox and Google Chrome but does not work in Apple Safari.

It seems the page navigates to href page location before the post request is completed. How can I make it work in Safari? Please help.

share|improve this question
Don't forget to explain what "does not work" means - does this code generate an error message? If so, which one? – Wladimir Palant Jun 23 '11 at 10:27

1 Answer

make async : !$.browser.safari

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.