0

Login popup style=display:none only popup in Chrome but not Firefox16.0.1 and IE9.

Any advise or fix are welcome. I follow tutorial at:tutorial

http://jsfiddle.net/6TaQt/8/

user1732217
  • 67
  • 1
  • 7
  • You have error in your fiddle. Its not working in FF. I got this TypeError: $("label.overlabel").overlabel is not a function when running the fiddle in FF – Zahid Riaz Oct 12 '12 at 10:26

2 Answers2

2

This is the markup issue also. Updated Fiddle This works in FF also and in chrome.

You have to enclose button inside a tag. not a tag inside button tag.

All other are right you have error of overlabel function

Zahid Riaz
  • 2,879
  • 3
  • 27
  • 38
  • TQ! Sorry all. The label function wasn't used on this login popup. Thanks Zahid. it works on Chrome, IE and FF now.:) – user1732217 Oct 12 '12 at 11:35
1

Try to debug this error message first "Uncaught TypeError: Object [object Object] has no method 'overlabel' ", actually what I don't get is how this possibly works in Chrome :)

jhuiting
  • 66
  • 7
  • The error happens in both. Difference probably is that Chrome continues to run after the error happens, but Firefox stops execution of the rest of the JS. – manavo Oct 12 '12 at 10:31