Making jQuery and Prototype work together.

I’m sure lot of people must be having this need to use Prototype and jQuery Ajax libraries at the same time. Just by definition they will not like each other. So you have add following to make both of these are happy and do not conflict with each other.

<script>

jQuery.noConflict();

</script>

Thanks to Benjamin Smith and his blog post. Yes he Saved My Day.