(Sorry if this is posted twice - tried through Nabble first but it wasn't 
sent)

This page works with 1.0.3, but not 1.0.4 - it simply calls a javascript 
function on the focus event:

Error returned is: "c[j].apply is not a function"

Can someone confirm before I post a bug report?

Copy / Paste the following:


<html>
<head>
 <script type="text/javascript" src="jquery.js"></script>
 <script type="text/javascript">
 function myfunction(x){
  alert(x);
 }
 </script>
</head>
<body>
<form>
<input id="test" type="text" name"test">
</form>
 <script type="text/javascript">
<!-- 
$(document).ready(function(){
        $("#test").focus("myfunction(this.id);");
});
//-->
</script>
</body>
</html> 


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to