Bug Tracker

Opened 16 years ago

Closed 16 years ago

Last modified 16 years ago

#1001 closed bug (fixed)

$() function do not support chinese parameter

Reported by: oscnet Owned by:
Priority: major Milestone: 1.1.3
Component: core Version: 1.1.1
Keywords: Cc:
Blocked by: Blocking:

Description

Description

$output ='<a class="中文" >abc</a>'; drupal_add_js(' $(document).ready(function() {

$("a.中文").click(function() {

alert("Hello world!");

});

});' ,'inline'); return $output;

this do not worked.

$output ='<a class="foo" >abc</a>'; drupal_add_js(' $(document).ready(function() {

$("a.foo").click(function() {

alert("Hello world!");

});

});' ,'inline'); return $output;

it's worked.

Change History (3)

comment:1 Changed 16 years ago by john

need: Test Case

comment:2 Changed 16 years ago by john

Component: ajaxcore

comment:3 Changed 16 years ago by john

Priority: criticalmajor
Resolution: fixed
Status: newclosed

Fixed in SVN rev [1577].

Note: See TracTickets for help on using tickets.