I am using Jquery Form Plugin to submit my form. The head tag of my html file looks like following
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
then 10 other javascript files
AND Then
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/jquery.form.js">
<script type="text/javascript">
$(document).ready(function() {
var options = {
success: showResponse
};
$('#myForm').ajaxForm(options);
});
</script>
To see the actual picture of my code please check this http://jsfiddle.net/Xfrms/1/
The problem is even though I call jquery library
on the very top of my code, if I don't call the jquery library right before the jquery.form.js plugin then it (jquery.form.js) doesn't work. I have tried to call those 10 other javascript files after the query.form.js
plugin calling the jquery library on the very top but in this case the functionality for which the javascript files are being called doesn't work.
After seeing this post, I think calling jquery twice can cause problems.
Could you please tell me what could possibly going wrong in my code and how to avoid having to load jquery right before the the jquery form plugin but still get it working?
Thanks
$
as something? Do any of them call jQuery.noConflict()? – Hulett$
but none of them calljquery.noConflict()
do you have any suggestion? thanks :) – Topple$
" I mean set it something else, something other than jQuery. Are you using another library, similar to jQuery, that is overwriting jQuery? – Hulett