Mar 21
Earlier i wrote that I had problems using jquery in wordpress. I found this problem when I tried to integrate a registration system (will probably make it a WP plugin when I have the time) I have made with wordpress. I use the jquery form plugin to do the ajax stuff.
The problem was solved by changing the $() with jQuery(). I changed alle the $() to jQuery() and added jQuery.noConflict() in top of my jquery code. It didn’t fix it to just do it with my own code, i had to change it in the jquery form plugin as well (note that I didn’t put the ´jQuery.noConflict()´ in the form plugin so it may not be necessary in my own code). I don’t know much about it other than that it works now. I will probably read some more on it when I have time.

