Got my self into a problem in IE 8 only. When i reference the following 2 together then the form submit event doesn't fire. When i remove either one then the event fires ok.
<script type="text/javascript" src="@Url.Script("jqueryMain/jquery.validate.js")"></script
<script type="text/javascript" src="@Url.Script("jqueryMain/jquery.validate.unobtrusive.min.js")"></script>
js call
<script type="text/javascript">
$(document).ready(function () {
$("#TransfersSearchForm").submit(function () {
alert(1);
return false;
});
});
</script>
Do i need to download the latest?