jQuery UI Dialog and IE -
i'm using jquery ui dialog project , having problems ie8 (haven't tested on ie7 , below did tested on chorme , ff).
i use code in js:
var dialogobj = $("#dialog").dialog({autoopen: false, title: id, modal: false, width: 600, height: 400});
the dialog filled through ajax. in ie8 title not showing correctly. it's narrow , doesn't show title's text.
also have problem in ie: whenever press element shows dialog have error message:
webpage error details
user agent: mozilla/4.0 (compatible; msie 8.0; windows nt 6.1; trident/4.0; slcc2; .net clr 2.0.50727; .net clr 3.5.30729; .net clr 3.0.30729; media center pc 6.0; tablet pc 2.0; infopath.3) timestamp: wed, 9 feb 2011 11:27:22 utc
message: unexpected call method or property access. line: 103 char: 460 code: 0 uri: http://localhost/js/jquery.js
which @ line:
return this.dommanip(arguments,true,function(a){this.nodetype===1&&this.appendchild(a)})},
char 460 starts here:
this.nodetype===1&&this.appendchild(a)})},
i use jquery v1.4.2
if press element again displays dialog.
the element shows dialog this:
<td class="aligntext"><a onclick="showdialog('<?php echo $r->id; ?>')"><?php echo $r->id; ?></a></td>
note page validates.
thanks help!
well apparently had defect in jquery file. once downloaded file again well.
Comments
Post a Comment