Plugins stopped working
Plugins stopped working
About 2 weeks ago, I had some plugins just quit working. I have searched and cannot find anything about this issue. I have not made any changes, prior to this happening.
The issue, so far, has affected the "blockUI" plugin, and the "print" plugin.
All I get back now (instead of working code), is that the particular plugin is not a function. Something like:
-- $("#divToBlock").block is not a function; --
On the print Plugin, I was using the code:
[code]
$("#divToPrint").print();
[/code]
and it was working fine. After playing around with it, it now only works if I write it like this:
[code]
print($("#divToPrint"));
[/code]
As for the BlockUI code I have it written as:
[code]
$("#divToBlock").block({});
// or if I need parameters;
$("#divToBlock").block({parameter: value});
[/code]
I've tried changing it to blockUI(), rewriting it the way the print plugin worked, but nothing seems to be working.
Anyone have any suggestions as to what is going on, that might cause an issue like this??? I'm pretty much lost as to what to try next...
Thanks for any assistance...
--Charles...