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'm building a very simple facebook application that just fetches a user's notifications from Facebook and also allows them to login. The URL is: http://widget.sidepage.co/_jump_frame.html

This works perfectly on Chrome - where the user is allowed to log in and authorize the app through a standard Facebook popup and once the app is authorized, it works well.

The problem is, on Firefox, clicking on the Facebook icon on the widget only opens a blank tab. There are no popup blocker warnings or JS errors thrown at the console.

Any pointers on how to fix this?

share|improve this question
1  
you should accept your past questions to make people answering you – okok Nov 22 '12 at 10:02
1  
Thanks for the input, will do that asap. – Ashesh Nov 22 '12 at 10:37
A weird issue: onclick="" doesn't work in Firefox/Chrome. If I replace it with onClick using a debugger, it begins to work. If I replace the onclick in the HTML file at the server, everytime the page reloads, it's replaced with an onclick instead of an onClick. – Ashesh Nov 22 '12 at 10:42
impossible, i use onclick="" on FF Chrome, Opera, it works, but maye not that is your problem, try deleting cache first of all – okok Nov 22 '12 at 10:43
Cleared the cache, but no help. Here's what the html looks like around that area: <a id="Facebook" class="item" onClick="handleClick()" href="#"> ... – Ashesh Nov 22 '12 at 10:54
show 5 more comments

1 Answer

oh dude easy fix this is a Defining document compatibility issue...

and for what exactley you will need i suggest doing exactly what I did to find out what your issue was run your app in firefox 16 and request to view the page source and observe the mark up as it is rendered to firefox and then do a little research on what it is that firefox 16 needs as far as a compatible input to run your code. It shouldn't be too bad. Best to you.. A few other sources. On this topic and legacy compatibility.

helpful link

helpful link

hope that helps dude :)

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.