For pretty much my whole blogging journey I've been working on coding designs for my sites. CSS was my favorite and HTML is bearable, but Javascript... Oh, the dreaded Javascript... I could never get Javascript down. I couldn't write my own codes or even make the ones I got off the web work. And I never understood why . So I've created this post today to help those of you who may be struggling as well. What is it? Javascipt is the most popular programming language. Like, ever. It can change HTML content, attributes, CSS styles, and much, much more. It makes web pages interactive and can be used in non-web based environments, such as PDFs and desktop widgets. [ 1 ] If you'd like to learn more about Javascript, like who created it and the many things it can do, head on over here . :) The standard Javascript code: <script type='text/javascript'> //<![CDATA[ Your JavaScript coding here //]]> </script> The code above is very im...