Tag Archives: jquery

How to Make Your Web Pages Dynamic!

Many times we need to make our web pages dynamic on the client side of things. In other words, we need to do something dynamically on the browser side of things – your local computer – instead of at the server side. For instance, if I enter something in a form, I have to submit the form, wait for the php code to check to see if what I entered is correct and then send me the results. If my browser were somehow able to check what I entered before it sends it to the website, it could speed things up considerably.

This is where Javascript comes in. Javascript is a scripting language that works inside your browser instead of inside the web server software like PHP. Javascript allows me to send instructions to your browser through the website code. Javascript is responsible for some of the basic animation that you see on web pages such as drop down menus, pop-up boxes, and buttons that change when you move your mouse over them. Continue reading

Posted in building websites, on technical stuff | Tagged , , , , , , | Leave a comment