// for example
$('#text').die('focusout');
//then I try to make it live() with a button that just exist
$('#button').live('click', function(){
$('#text').live('focusout');
});
When I click on the #button, firebug tells me that something’s worng in the jQuery.js. How to accomplish something like that?
live takes a second parameter of a function that you are missing
right here selector is undefined and it fails.