Why is this not working?

        $(document).ready(function(){

            var content = '<a href="http://example.com/index.php><b>Some text!</b></a> - <a href="http://example.com/index.php" class="ot-origin-anchor">News</a>';

            $("#test").replaceWith(function(){

                return content;

            });
            //Here is the problem. I don't know why but I can't define adres.
            var adres = $("#test .ot-origin-anchor").attr("href");

            //find example.com - ugly :P
            var adresRegExp = adres.match(/(\w+:\/\/+(www.|))([^/]+)/);

            alert(RegExp.$3);

        });

    </script>

    <div id="test">bnb</div>
link|improve this question
what are you trying to accomplish?,if you want to define a link into the div i think that's wrong – Jorge Aug 22 '11 at 18:25
I'm trying change "News" into "example.com" (content is from Google Buzz). – Non native speaker Aug 22 '11 at 18:36
feedback

6 Answers

up vote 0 down vote accepted

Why use replace with? Use the jQuery .html() method to add it to the DOM, after that, you should be able to select it easily. Working Example.

link|improve this answer
I don't know why but when I try before .html() destroy my content, anyway thank you. – Non native speaker Aug 22 '11 at 18:42
@Non .replaceWith() is even more destructive than .html(). – Matt Ball Aug 22 '11 at 18:53
@Matt even more destructive?! it's over 9000!!!! </insanity> – Truth Aug 22 '11 at 18:56
feedback

After the .replaceWith() call, there is no element on the page with ID test. It looks like you meant to use .html() or .append() instead of .replaceWith().

var content = '<a href="http://example.com/index.php><b>Some text!</b></a> - <a href="http://example.com/index.php" class="ot-origin-anchor">News</a>';

$("#test").html(content);
// or
$("#test").append(content);

var adres = $("#test .ot-origin-anchor").attr("href");
link|improve this answer
feedback

replaceWith replaces every element in the selection to which it is applied. That would mean you'd end up with just content after the replace. So your next query, which looks for #test would match nothing. #test is gone. You replaced it with content.

link|improve this answer
feedback

You are replacing #test with your content variable so the selector isn't finding an element with id test. Try $("#test").html(content); instead.

Updated jsfiddle: http://jsfiddle.net/sHGrB/

link|improve this answer
In your example is only "News", and should be "Some text! - News". – Non native speaker Aug 22 '11 at 18:50
You were missing a quote in the first anchor tag. Update: jsfiddle.net/sHGrB/2 – Dennis Aug 22 '11 at 18:52
Yes, thank you very much! :D – Non native speaker Aug 22 '11 at 19:02
feedback

If you replace:

 $("#test").replaceWith(function(){

            return content;

        });

with:

$("#test").html(content);

You will get you the results you want, because #test no longer exists with replace

link|improve this answer
feedback

There are a couple problems here, one is that replaceWith is actually replacing #test with content. Then, your selector is looking for #test .ot-origin-anchor which doesn't exist, because #test was clobbered. Instead you should do something like:

$(document).ready(function(){
    var content = '<a href="http://example.com/index.php><b>Some text!</b></a> - <a href="http://example.com/index.php" class="ot-origin-anchor">News</a>';

    $("#test").html(content);
    var address = $("#test .ot-origin-anchor").attr("href");
    var addressRegExp = address.match(/(\w+:\/\/+(www.|))([^/]+)/);

    alert(RegExp.$3);
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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