Issue related with #358082: jQuery 1.3 in Drupal 6.x

To help signup work with jQuery 1.3.2 in jQuery Update can we please remove the @ in the selectors. It was depreciated as of 1.2 and removed in 1.3. Change highlighted below.

jQuery 1.2.x:
$("a[@href*='admin/build/testing']").doSomething();

jQuery 1.2.6 and 1.3.x:
$("a[href*='admin/build/testing']").doSomething();

More detail at http://docs.jquery.com/Selectors/attributeHas#attribute

CommentFileSizeAuthor
node_form_js.patch443 bytesjcmarco
admin_content_type_js.patch649 bytesjcmarco
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

dww’s picture

Category: bug » task
Status: Active » Fixed

Thanks for the info and the patch. This isn't a bug per se, it's just a task for upgrading to a new version of jQuery. I tested using the jQuery in current D6 core and everything still seemed to work, so I committed to HEAD and DRUPAL-6--1. Thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.