Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>
share|improve this question
Not the source of your error, but .live() is deprecated in favor of .delegate() or .on(). – Surreal Dreams Mar 9 '12 at 19:25

2 Answers

can't wrap a string around an element which is what you are doing with:

var holder = $('p').wrap('holder').parent();

Needs to be an html tag , or a jQuery object

var holder = $('p').wrap('<div>').parent();

See API for wrap()

http://api.jquery.com/wrap/

share|improve this answer
The test code actually was: <pre>$(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>'); });</pre> – simo Mar 9 '12 at 19:34
Whats wrong with the formatting ..? Anyways it doesn't work with actual element it was typo in my first post. The test is with var holder = $('p').wrap('<div class="holder"></div>').parent(); and it gives the error message. I just got it to work with holder.on('click', 'a', function () { – simo Mar 9 '12 at 19:42
put a demo together in jsfiddle.net – charlietfl Mar 9 '12 at 19:44
jsfiddle.net/KYTEx - here you are. Just open your console and hit the links. – simo Mar 9 '12 at 19:49
show 3 more comments
up vote 0 down vote accepted

Using on() instead of live() solves the error.

<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>');
});

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.