Tag Archives: JavaScript Scripting

JQuery & AJAX Mouse Event Handler’s

I forgot to cover in depth mouse event handler’s in the last presentation. If you add the following code to my previous JQuery & AJAX tutorial on Event Handler’s, we should be good to go.

You just need to add a little bit of code to implement mouse event handler’s. Change the code where I assign event handler’s to the body to this:

$(‘#theBody’).bind(‘keyup’,checkKeyPressed).bind(‘mousemove’,theMouseMoved);

Continue reading JQuery & AJAX Mouse Event Handler’s

JQuery & AJAX Selecting & Editing Elements

In this article, I’m going to walk you through some code that I styled with JQuery. You’ll learn:

  • How to select elements in your web page numerous ways
  • How to edit elements in your web page in numerous ways
  • Learn how to monitor event handler’s with JQuery and JavaScript
  • And a bunch more…

Continue reading JQuery & AJAX Selecting & Editing Elements

JavaScript Frameworks

If you have been programming in JavaScript, you have heard about all the frameworks available. The most popular frameworks are:

  • Prototype
  • JQuery
  • MooTools
  • Scriptaculous

I’ve been pondering whether I was going to cover frameworks on my site because while I have used them, I prefer to write and reuse my own code. So, in this article I’m going to go through the pro’s and con’s of using frameworks. Continue reading JavaScript Frameworks