Side navigation
#1001 closed bug (fixed)
Opened February 27, 2007 07:26AM UTC
Closed March 25, 2007 12:58AM UTC
Last modified June 20, 2007 12:51AM UTC
$() 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.