Classes (1)  /  ColdFusion (14)  /  ColdFusion Jobs (2)  /  General (7)  /  JQuery (7)  /  Quick and Dirty (3)  / 
Search Blog

 

Archives
RSS

 

 

 

Adobe Community Expert in ColdFusion

 

Adobe Ceritfied Instructor

 

CTT+ Certified Technical Trainer

 

Hosted By:

Alurium Hosting

Powered by BlogCFM v1.14

29 January 2010

JQuery Nuts and Bolts: Part 1

What is Jquery Anyways

For the one or two of you that don't know what JQuery is....

from JQuery.com:
"jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript."

and it does...

How does it do the voodoo that it does so well?
In the 30,000 ft. view, JQuery converts the entire rendered HTML document to Javascript, which gives it access to the DOM and events.. Now that you know that, store it in the back of your mind somewhere, because the only time you'll need it is if someone asks you, "How does JQuery work?".

There are a few things that you do need to be concerned with in order to implement JQuery, whether you're using ColdFusion or not.

Concept 1. when does the magic happen
JQuery handles things differently than Javascript traditonaly does, under normal circumstances you'd wrap up your Javascript in a window.onLoad() event, and wait until the page rendered, before anything happens.

JQuery circumvents this with the ready event. this checks the document and starts once it is ready to be manipulated. it looks like this:


$(document).ready(function(){ 
  // Your code here   
}); 

Concept 2: selectors
a selector can be a tag ("a") or an id (id="foo"). We'll build on the existing code

$(document).ready(function(){
    $("a").click(function() {
     alert("Hello world!"); 
    }); 
 }); 

In this case we're using the tag "a" we could've just as easily used an ID

$(document).ready(function(){
  $("#IDName").click(function() {
   alert("Hello world!"); 
  }); 
}); 

 

If you''ve not used JQuery before, here's the place to start:
http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery

Share |
Posted by admin at 12:00 AM| Link  |  0 comments |

 

27 January 2010

I am currently seeking new opportunities

I am currently seeking new ColdFusion development opportunities,eitherfull time or telecommuting in the Raleigh/Durham/RTP area or in the Washington DC Metro area.

I have over ten years of experience from v. 3.1 through 9.0.

 Summary of expertise:

ColdFusion:

  • Components
  • Functions
  • Basic OO development
  • Fusebox, FuseQ
  • cfscript

Databases:

  • MSSQLServer versions 7 through 2005, including stored procedures and some administration
  • Sybase, queries
  • Oracle, querie
  •  MySQL, queries, stored procedures, importation from other formats

Scripting:

  • Javascript,
  • JQuery,
  • JQuery UI Libraries,
  • HTML CSS
  • ASP 2.0

 I am willing to relocate to the DC Metro Area for the right opportunity.  My resume is here http://www.sstwebworks.com/docs/scott_stewart_current_resume.doc

Salary requirements and other details available upon request

Share |
Posted by admin at 12:00 AM| Link  |  0 comments |

 

JQuery Nuts and Bolts

Getting JQuery and ColdFusion to dance together
I think it's time I give something back to the CF Community. This will start a series of entries dealing with the interaction between Cold Fusion and JQuery.
Share |
Posted by admin at 12:00 AM| Link  |  0 comments |

 

 

© 2011 Scott Stewart / SSTWebworks
Design by Contented Designs