JQUERY common function library create script errors. How to avoid?

Posted by Cesar Lopez on Stack Overflow See other posts from Stack Overflow or by Cesar Lopez
Published on 2010-03-17T11:38:43Z Indexed on 2010/03/17 11:41 UTC
Read the original article Hit count: 167

Filed under:
|

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.

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about script-errors