JQuery and javascript conflict

Hello all,

I have used a javascript image gallery for a site and on the same page lies a pop-up form. Both works fine as far as functionality is concerned but the problem comes with the form validation while filling the form.
The form validation code has also been integrated within the form which is not working with the page.

one can refer the url : http://masterworks.in/sportybeans/gallery.php

add this to your header after calling for jQuery:

<script> jQuery.noConflict(); </script>

then find, for example, in all code related to jQuery

   <script type="text/javascript">
    $(document).ready(function(){...

replace with

   <script type="text/javascript">
    jQuery(document).ready(function(){...

Thanks a lot…!!!

You are welcome :slight_smile: