vedmack/feedback_me

Doesn't work in Firefox 22

Closed this issue · 2 comments

I'm getting a whole pile of 404's in all of the demos with Firefox 22.

"NetworkError: 404 Not Found - http://feedback-me.appspot.com/css%5Cjquery.feedback_me.css"
css\jq..._me.css
"NetworkError: 404 Not Found - http://feedback-me.appspot.com/js%5Cjquery.min.js"
js\jquery.min.js
"NetworkError: 404 Not Found - http://feedback-me.appspot.com/js%5Cjquery-ui.min.js"
js\jqu....min.js
"NetworkError: 404 Not Found - http://feedback-me.appspot.com/js%5Cjquery.feedback_me.js"
js\jqu...k_me.js
"NetworkError: 404 Not Found - http://feedback-me.appspot.com/js%5Cjquery-ui.min.js"
js\jqu....min.js
"NetworkError: 404 Not Found - http://feedback-me.appspot.com/js%5Cjquery.feedback_me.js"
js\jqu...k_me.js
ReferenceError: $ is not defined
[Break On This Error]

$(document).ready(function(){

exampl...ap.html (line 22

Confirmed. This issue occurs in FF22.

You need to correct the script tags:

Currently:

<script type="text/javascript" src="js\jquery.min.js"></script>

Fixed:

<script type="text/javascript" src="js/jquery.min.js"></script>

Note that the current source uses backslash character () that should be replaced with forward slash (/)

All the script tags need to be fixed.

Fixed the examplesto use slash (/),

Thanks @redwards1966 and @kashiif