#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
need: | → Test Case |
---|
comment:2 Changed 16 years ago by
Component: | ajax → core |
---|
comment:3 Changed 16 years ago by
Priority: | critical → major |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Fixed in SVN rev [1577].