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 tried just about every suggestion known to man to get the basic FBJS working in my FBML app.

Here is my code

<script>
<!--
function areyousure(description,id,opt) {  
debugger;
var dialog = new Dialog(Dialog.DIALOG_POP).showChoice('Are you sure?','Are you sure you want to delete "' + description + '"? This action cannot be undone!','Yes','No');
    dialog.onconfirm = function() {
        document.setLocation("http://apps.facebook.com/myapp/delete.php?rec
ord=" + id + opt);
    }
}
//-->
</script>


<a href="#" onclick="areyousure(arg1,arg2,arg3);" >click me</a>

When I click the link, I get a a1234543_areyousure not found.

Help Please.

Thanks

share|improve this question

2 Answers

I think you are messing a ";" in a href :

<a href="#" onclick="areyousure(arg1,arg2,arg3);" >click me</a>
share|improve this answer
I added the ';' and it didn't help. Updated the code to reflect. – Erin Dalzell Jan 20 '11 at 16:39

The parameters didn't exist. This works:

<script>
<!--
function areyousure() {  

var dialog = new Dialog(Dialog.DIALOG_POP)
dialog.showMessage('test','foo');
}
//-->
</script>


<a href="#" onclick="areyousure();" >click me</a>
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.