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 trialTing Wei Kao
Front End Web Development Techdegree Student 245 PointsCan't get the prompt box
Trying to link script.js to html but can't get the prompt box to pop out.
script.js is under js file
My line of code <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JavaScript Basics</title> <link href="css/style.css" rel="stylesheet"> <script src="js/script.js"></script> </head> <body> <main> <h1>Hello, JavaScript!</h1> </main> </body> </html>
1 Answer
Alvaro Davila
949 PointsMaybe you are using an Adblocker with blocks popup windows.
Steven Parker
231,172 PointsThe code might be using alert, which generates a modal dialog.
Modals are essential operational elements and shouldn't be counted as "pop-up windows" by correctly coded software.
Steven Parker
231,172 PointsSteven Parker
231,172 PointsThe code that creates the prompt box is in the js file which is not shown here. To share your entire workspace, you can make a snapshot of your workspace and share the link to it. Click the highlighted word for a video explaining how.