I have been adding logs to the console to check the status of different variables without using the Firefox debugger.
However, in many places in which I add a
I get such warning in following case:
1) file1 which contains . Page has input fields. I enter some value in input field and click button. Jquery sends input to external php file.
2) external php file also contains jquery and in the external php file i also included . Because if this i got the warning.
Removed from external php file and works without the warning.
As i understand on loading the first file (file1), i load jquery-1.10.2.js
and as the page does not reloads (it sends data to external php file using jquery $.post
), then jquery-1.10.2.js
continue to exist. So not necessary again to load it.