HOWTO Migrate to jquery

HOWTO Migrate to jquery

Hi all!!

I have a big web project with JSP, java (.class files), css and JS.
I want to migrate to JQuery but I don't know how to start.

Our web project have a lot of JS written by us, some ajax functions by us with callback, many function called by the ajax. We have some hided div that can be shown by JS, an Taxonomy with drag & drop, cross-frame functions, many many many forms, many frames, an Setup() function on any page, some pseudo-class on JS like:
  1. var some_pseudo-class = {
  2.         somevariable: null,
  3.         someothervariable: 1,
  4.         anfunction: function() {
  5.                 ....
  6.         }
  7. }
and some other pseudo-class like:
  1. function className() {
  2.         var obj = this;
  3.         this.somevar = "";
  4.         this.somefunction = function() {
  5.                 if (obj.somevar == "")
  6.                         ...
  7.         }
  8. }
Also, i want to make an Unobtrusive code for the future modification.
How can I start with JQuery? I read many tutorials but just explain how to make some thing like change each:
  1. document.getElementById
t:o:
  1. $('#

Also, I have a CKeditor as WYSIWYG editor, JQuery editor is better than CKeditor? Why?

Thanks in advance for you help
Sorry for my bad English. Hope you understand me.

Regards Juan Pablo From Argentina
PD: This post may can help some other people that are in the same situation like me.