[jQuery] (validate) conflicts with (jqmodal)
I'm using both validate 1.5.4 plugin and jqmodal r14 plugin (latest
releases)
When both plugins are loaded the jqmodal plugin fires only one
instance on the first element associated to it.
for example:
head:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/
libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="/Scripts/Jquery/
jquery.validate.pack.js"></script>
<script type="text/javascript" src="/Scripts/Jquery/jqmodal_pack.js"></
script>
Jquery code:
$("#dialog").jqm({
trigger:'.tickbox',
});
jqmodal placeholder in body:
<div class="jqmWindow" id="dialog">
<div class="jqmMsg"></div>
</div>
<a href="#" class="tickbox">A</a>
<a href="#" class="tickbox">B</a>
Both links should fire a jqmodal, but only A fires. Disable validate
script and both links will launch a jqmodal.
Someone got a idea how to fix this?