JavaScript - Can't Get My Feet Off The Ground...
Hello,
I'm very new to javascript (OK...DAY 1) and I can't seem to even do the most simplest of procedures. All, I'd like to do is replace "sdfsdf" with "New Stuff". I can't figure out for the life of me why my code won't work and any help would be super appreciated. Thank you... Code: <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Untitled Document</title> <script type ="text/javascript" src="../../js/jquery.js"></script> <script type="text/javascript"> $('#quizResults').html('<p>New stuff</p>'); </script> </head> <body> <div id="quizResults"><p>sdfsdf</p></div> </body> </html> Similar TutorialsI have an Adobe pdf fill-able form field that requires a distance computation using javascript. One of the values needed in the computation is in the format of a string as feet - inches (for example: 4'-10"). I need to convert this into a number to use to complete a computation. Does anyone have a code snippet or any ideas on how to do this. Any assistance is greatly appreciated. Thanks. |