J query and moo tools and not working
Hey guys,
I am having issue with j query and moo tool using them both.
J query script.
<script src="scripts/jquery.easing.1.3.js" type="text/javascript"></script>
<script src="scripts/jquery.kwicks-1.5.1.pack.js" type="text/javascript"></script>
<script type="text/javascript">
/* Navigation silde effect */
$().ready(function() {
$('.kwicks').kwicks({
max : 220,
spacing : 5
});
});
</script>
Moo tool script
<script type="text/javascript" src="mootools.js"></script>
<script type="text/javascript">
window.addEvent('domready', function(){
$('myForm').addEvent('submit', function(e) {
new Event(e).stop();
var log = $('log_res').empty().addClass('ajax-loading');
this.send({
update: log,
onComplete: function() {
log.removeClass('ajax-loading');
}
});
});
});
</script>