In times like this, turning on Script Debugging in IE is very helpful
(tools/options/advanced/uncheck-"disable script debugging")

pulling up the link above with debugging on pointed out the problem
right away:

"Error: '$' is null or not an object"
for the line
if (typeof $.wordStats != 'undefined' && $.dynaCloud.wordStats) {


looking at the code in "dynaCloud.js"

--------------------------------------------------------------------------
jQuery.fn.dynaCloud = function() {
 return this.each(function() {
  //var now = new Date().getTime();

  var cl = [];
  var max = 2000;
  var min = 10

  if (typeof $.wordStats != 'undefined' && $.dynaCloud.wordStats) {
   var count = $.dynaCloud.max == -1 ? 50 : $.dynaCloud.max;
--------------------------------------------------------------------------


he didn't follow this convention

http://www.learningjquery.com/2007/10/a-plugin-development-pattern
(scroll down to 'Keep private functions private', which makes sure
that the code can use "$" even if "noConflict" is specified)

fix up that plugin script and you should be all good









On Feb 24, 4:56 pm, pedalpete <p...@hearwhere.com> wrote:
> So I got a version up and running, obviously you'll see by looking
> this that it isn't a complete work, but if fails completely in IE, but
> works in FF & Chrome.
>
> http://ec2-75-101-196-181.compute-1.amazonaws.com/v2/
>
> I've picked it apart and put it back together, and it seems I just
> keep ending up with different errors as I get deeper and deeper into
> it, and the errors that are getting reported are with google maps, or
> the the datePicker, or genre cloud. any ajax requests, etc.
> Really any non-core (with the exception of ajax) function just doesn't
> work.
>
> Any ideas on how to track this down would be greatly appreciated.

Reply via email to