Hello! I am having some trouble getting my information to show up.
At first it shows the table with the information, and then it shows a syntax error, and the information I just entered to be a document ready command.
All of the information I have, except for the table, is coming from the book pg. 20 of the second edition, but I can't figure out what I am doing wrong.
When I view this code in a browser while having a syntax error, I cannot see anything.
And when I do not have an error, I get the code that I just entered stuck in my webpage at the top.
Here is the entire code that I am having trouble with.
Thank you for your time!Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>The Cake Kiosk</title> <script type="text/javascript" src="jquery-1.8.0.min.js"></script> <script type="text/javascript" src="script.js"></script> $(document).ready(function(){ alert('Welcome to StarTrackr! Now no longer under police investigation!'); }); </head> <body> <table width="100%" border="2" cellspacing="2" cellpadding="2" bgcolor="#0066FF"> <tr> <td colspan="2" align="center">The Cake Kiosk</td> </tr> <tr> <td align="center">Design Your Own</td> <td align="center">Current Designs</td> </tr> <tr> <td align="center">Java Script Code Left</td> <td align="center">Java Script Code Right</td> </tr> <tr> <td align="center" colspan="2">Developed by Kiosks for Cakes</td> </tr> </table> </body> </html>


Reply With Quote




Bookmarks