jQuery("#cssSelector").functionName is not a function
OK, here's the deal. I have 3 javascript files.
- jquery.1.4.2.js
- jquery.watermark.js
- custom.js
I have verified all three files are loading using FireBug and files 1 & 2 are both coded properly because others use them without problem.
custom.js looks like this:
- $(document).ready(function(){
- $("#SearchForm_SearchForm_Search").Watermark("Search the DEA");
- });
FireBug throws an error on line 2: $("#SearchForm_SearchForm_Search").Watermark is not a function
Please HELP!!
Thanks :)