FBJS Quick Jump Menu for a FBML Facebook Platform App
In a FBML Facebook App, your quick jump menu will require a little tweak to work in FBJS properly.
Just change your standard js jump menu from:
<select onchange="goto(this.options[this.selectedIndex].value)"> <option value="page.php?id=1">Page1</option> <option value="page.php?id=2">Page2</option> <option value="page.php?id=3">Page3</option> </select>
To this:
<select onchange="document.setLocation(this.getValue());"> <option value="page.php?id=1">Page1</option> <option value="page.php?id=2">Page2</option> <option value="page.php?id=3">Page3</option> </select>
Cheers.
Related posts:
No comments yet

