Quick Tip: BlogEngine + jQuery fix
February 20, 2009
For BlogEngine users
I'm a big fan of jQuery, so it's certain I need to using jQuery in my blog. However, if you try to using jQuery with $(element), it won't work.That's the very basic jQuery and it's not work. You will start frustrated (Like I used to be)
.[more]
The reason is: BlogEngine also uses $ in their Javascript, so there are a conflict between those 2. However, jQuery development team did think about that. So here the solution:
var $j = jQuery.noConflict();
A simple line. So from now on, instead of using $(element), you could use $j(element) instead.
Enjoy
.

Some problem with AjaxControlToolkit?
Trackbacks