JQUERY common function library create script errors. How to avoid?
- by Cesar Lopez
Hi all,
I am building a common function library but the functions inside need to reference different jquery files, which they may need to be referenced in some pages but not in others.
When I called this common function library in one web page which is only going to use one function, and I don't reference the files need it for the other function, then it will create a script error.
My question is if it would be possible to stop this script errors like...
//This if statement is what I was thinking to stop going through
if ($(".objectdate") != null){
//This is the function that is calling other jquery files and creates error.
$(document).ready(function() {
$(".objectdate").datepicker({
//Code inside.
});
});
}
Thanks.