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.

Here's the setup: A user fills out a certain form on my page, which is submitted via AJAX (jQuery $.post). In the return function I add an element to the page related to the form that was submitted. This element has a click() handler attached to it. The element goes on the page without issue, but when I click it, I get the dreaded "Could not convert JavaScript argument". Here is the line that adds the element to the page:

$('<span class="appointment" id="a'+aid+'">'
    +type+name+'</span>').click(appointmentDetails).appendTo(calSlot);

Again, this is being called inside the success callback of the jQuery post function. The appointmentDetails function exists, as do all the variables. I also tried like this:

var newHTML='<span class="appointment" id="a'+aid+'">'+type+name+'</span>';
$(calSlot).append(newHTML);
$("#a"+aid).click(appointmentDetails);

The appointmentDetails function uses either a passed ID or this.id to get the appointment ID, then runs a jQuery .post to get and display the appointment details. Here are the basics:

function appointmentDetails(appID) {
    if (!appID) var appID=$(this).attr("id").substr(1);
    $.post("data/appointments.php", {aid: appID, action: "details"}, function(data) {
        //Callback stuff. Doubtful it's relevant
    }, "xml");
}
share|improve this question
What does the click handler (appointmentDetails) look like? – Andrew Whitaker Jan 24 at 2:30
You want the full code? I gave a general idea at the end, but I can post it if necessary. – D. Strout Jan 24 at 2:31
I don't think the code you've posted contains the problem. A simple event handler doesn't fail: jsfiddle.net/6zAN7/6 – Andrew Whitaker Jan 24 at 2:34
Edited to include basic version of appointmentDetails – D. Strout Jan 24 at 2:38
1  
@HoàngLong The ID of a calendar slot in the form day[day of month]-[time]. As I said, though, the element is added successfully, so that doesn't really have anything to do with it. – D. Strout Jan 24 at 2:49
show 2 more comments

1 Answer

function appointmentDetails(appID) <--

appID would be a jQuery event object!

It is not undefined/false like you are expecting. You need to check if it is an object/string if you are overloading this function.

share|improve this answer
Another one of my duh moments. Ah well, makes sense; hopefully this will help other people out of duh moments. Thanks. – D. Strout Jan 24 at 2:47

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.