Approximately a year ago, while I was starting to work with WordPress and trying out different plugins, I had encountered problems trying to integrate plugins that used MooTools and plugins that use jQuery. I had posted a possible solution in there as well. Here are solutions from jQuery site, if you want to know more.
So, after a year with playing around a lot of plugins that uses mootools / scriptaculous and other plugins that uses jQuery (which I prefer), I want to share one easy solution that I have found. I haven’t had any problems till now with this solution and I have been using and recommending to to all my themes.
You do not have to define and noConflict function as recommended by jQuery site. Simply, refrain from using $ as a shortcut to jQuery which means that you have to use jQuery in place of all $ used by your jQuery code. So, your code will look something like this:
jQuery(document).ready(function(){
jQuery("div").hide();
});
I know its a bit tedious but it works well without having to take all the headaches of what is happening. So, while your jQuery plugin work perfectly, you can enjoy the features from other plugins using MooTools or other libraries.
Happy Thanksgiving to all. Once again, I would like to personally thank everyone for being a part of WPshoppe.
First thing that I came to know of while working with WordPress. I will probably encounter a few more later as I continue working on it. You can share yours!
If you are also stuck with JavaScript framework wars and are in trouble trying to make it work together, here is a good tip. I recently was working with a WordPress Theme for a client and had to build a plugin. I have been a fan of jQuery and immediately started using it to create the small plugin for the site. It worked great!
Every heard of Child Themes? This is a very less discussed term in the WordPress Theme Development world. But this is nothing too complex. It is very similar to how to develop normal WordPress themes. So, you just have to create a folder name (such as simpleX Child) inside the themes folder and add a style.css in it. The style.css should include the following (at the least):
All of a sudden you see the fugly search bar on every YouTube video embeds. Though it is now made optional due a lot of negative responses over the web about the newly added feature. There is an explanation to why it added the search bar 


