I'm writing a jQuery plugin, but I'm having a problem:
My HTML element
<a id="trac"></a>
My JS that calls the plugin
$('#trac').myplugin();
My plugin
$.fn.myplugin = function(){
var $root;
return this.each(function(){
$root = $(this);
$root.live('click',function(){
console.log('here');
});
});
}
It happens that "here" is never displayed. But if I use...
$('#trac').live('click',function(){
console.log('here');
});
..."here" is displayed. I don't understand why it is happening because $root and $('#trac') are exactly the same jQuery object.
How can I fix it?
Thanks!
document.ready()arround$('#trac').myplugin();? – powtac Jun 20 '11 at 12:47