in all the pages,

jQuery("input.hint-enabled:not(input.hint)", content).hint is not a function
[Прерывать на этой ошибке] triggerClass: 'hint-enabled' 

and after apply the patch from http://drupal.org/node/952126

jQuery("input.hint-enabled:not(input.hint):not(input.hint-processed)", content).addClass("hint-processed").hint is not a function
[Прерывать на этой ошибке] triggerClass: 'hint-enabled' 
CommentFileSizeAuthor
#2 hint-js-error-fix-1043302.patch1.16 KBmrjeeves

Comments

mohamadaliakbari’s picture

I had this problem too, I solve it by change all "jQuery" to "$" in hint.js

(function ($) {
....
  $('input.hint-enabled:not(input.hint)', content).hint({
    hintClass: 'hint',
    triggerClass: 'hint-enabled'
  });
....
})(jQuery);

last jQuery is for jQuery object renaming.

mrjeeves’s picture

StatusFileSize
new1.16 KB

patch against 6.x branch

This actually works for me as well.

mrjeeves’s picture

Status: Active » Needs review

Just realized that I hadn't changed the status.