Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAdam White
10,571 Points"Resource interpreted as Stylesheet" error makes screen flash
I'm on jQuery basics, creating a mobile drop down menu. The video: https://teamtreehouse.com/library/jquery-basics/creating-a-mobile-drop-down-menu/perfect
First, my drop down menu isn't even showing up. For troubleshooting I open the last Workspace since it would have an accurate and working version of the project. I didn't touch the code, and the problem occurs.
I ran Ctrl+Shift+J to see the console and I get this message flashing repeatedly:
Resource interpreted as Stylesheet but transferred with MIME type text/plain: "http://port-80-6hrl7lqa0p.treehouse-app.com/css/style.css". index.html:4
Line for of index.html is <link rel="stylesheet" href="css/style.css" type="text/css" media="screen" title="no title" charset="utf-8">
Here's a link to the code pen: http://codepen.io/pandathorax/pen/gpRrjX
I can't move past this in the tutorials, so any fixes would be greatly appreciated.
2 Answers
Adam White
10,571 PointsThanks, Mark. While this isn't 100% verified, it seems to have been multiple syntax errors in my disorganized stylesheet. Odd since it would pass w3c' validator. A mystery still, but I paid a Fiverr to straighten it out for me. Thanks again for responding. Hopefully it will answer someone else's similar error.
Mark Magee
11,489 PointsPut the window.location inside the button click, I think this is causing the page to keep redirecting back to the same page.
$button.click(function(){ //Go to select's location window.location = $select.val(); });
Adam White
10,571 PointsAdam White
10,571 PointsAfter showing this issue to my instructor, even he could not figure out the issue.