If you run this code and click on some of the links you'll get this error message:
Syntax error, unrecognized expression: )
Also I found that maybe the ')' error is related to the selector of the holder element which is: "p.parent()"
<script type="text/javascript" charset="utf-8">
$(function () {
var holder = $('p').wrap('<div class="holder"></div>').parent();
$('a', holder).live('click', function () {
console.log( $(this).text() );
return false;
});
holder.append('<a href="#">append</a> <a href="#">some</a> <a href="#">elements</a>');
});
</script>
<p>test</p>
I don't know where the error might be, I'm starting to think that it's a bug in jquery and the way it is using the selector with live. In other parts of may code I have selector like this $('a', holder).eq(..) and it works fine.
I just got it to work with:
<script type="text/javascript" charset="utf-8">
$(function () {
var holder = $('p').wrap('<div class="holder"></div>').parent();
/*$('a', holder).live('click', function () {
console.log( $(this).text() );
return false;
});*/
holder.on('click', 'a', function () {
console.log( $(this).text() );
return false;
});
holder.append('<a href="#">append</a> <a href="#">some</a> <a href="#">elements</a>');
});
</script>