jQuery and other js libraries conflict

-->

to solve conflict:
add this code:

<script type=”text/javascript”>
jQuery.noConflict();
jQuery(document).ready(function($) {
… your jquey code
}
</script>

Comments are closed.