Learn how Script Tags and Document Ready Work
See original GitHub issueChallenge Name
https://www.freecodecamp.com/challenges/learn-how-script-tags-and-document-ready-work
Issue Description
I type in the correct answer, and I know it’s correct because I’ve even moved on to see the answer, and when I click run tests it won’t let me move on.
Browser Information
- Browser Name, Version: Chrome
- Operating System: OSX El Capitan
- Mobile, Desktop, or Tablet: Laptop
Your Code
<script> $(document).ready(function)() {
});
</script>
Screenshot
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Learn How Script Tags and Document Ready Work - Guide
Learn How Script Tags and Document Ready Work Solutions Solution 1 (Click to Show/Hide) <script> $(document).ready(function() { }) ...
Read more >learn-how-script-tags-and-document-ready-work has an ...
I tried this multiple times with no pass. I would copy the code and paste it into editor. Submit my answer and .....
Read more >Learn how Script Tags and Document Ready Work
First, add a script element at the top of your page. Be sure to close it on the following line. Your browser will...
Read more >Everything I Know About The Script Tag - Eager Blog
Script tags are executed in the order they appear ... It is less intuitive (but no less true) when working with external resources....
Read more >$( document ).ready()
Code included inside $( document ).ready() will only run once the page Document Object Model (DOM) is ready for JavaScript code to execute....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You need to remove the extra
)
after the wordfunction
. Next time please ask in the Help Room rather than posting an issue on Github.@Nsix6 can you ask your question in the Help Room pls? Thanks.