You have multiple old copies of jQuery being loaded in your page, in addition to the proper 1.8.3 version of the library. See these lines in the source of your page:
1938: <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
1926: <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
1916: <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
47: (this one is correct) <script type='text/javascript' src='http://www.piklawgroup.com/wp-includes/js/jquery/jquery.js?ver=1.8.3'></script>
Get rid of the old libraries and multiple copies and check your page again. If there are no other JavaScript errors on the page, the form with conditional logic should work correctly.
There is also a bunch of improperly nested tags and invalid HTML. You may have problems in various browsers with the invalid markup.
Posted 11 years ago on Sunday March 24, 2013 |
Permalink