vote up 0 vote down star

Another JQuery question for you guys.

Say I have a url of an image in my web page surrounded by square brackets.

[http://www.example.com/picture.jpg]

How could I, with JQuery transform that string like so...

[http://www.example.com/picture.jpg]

into...

<img src="http://www.example.com/picture.jpg" />

?

flag

1  
That depends on what you call an image. How do you know whether example.com/foo.php is an image? Do you care? Can you be certain everything in square brackets is an image path? – Dominic Rodger Oct 22 at 8:44
also, what do you start out with? the specific strings with the square brackets or do you want to convert any text on the page surrounded by square brackets into images? – cobbal Oct 22 at 8:45
@Dominic This is a very niche project and there won't be any other urls inside these brackets. @cobbal Basically, grab the url inside the brackets and append into the src of the img attribute. – Keith Donegan Oct 22 at 8:51
can't you use [img][/img] instead of just square brackets? – Natrium Oct 22 at 8:52
@Natrium, not the point, but yes I could, as mentioned this is a very niche project. – Keith Donegan Oct 22 at 8:53

1 Answer

vote up 1 vote down check

I'd do something like this

$("some-selector").each(function(){
    $(this).html($(this).html().replace(/\[(http:.*?)\]/gi, function(str, p1){
        return "<img src='"+p1+"' />";
    }));
});

"some-selector" should try to pinpoint where these string occur. If there is nothing like it... just put "body" and see what happens :)

link|flag
Thank you but no joy I'm afriad – Keith Donegan Oct 22 at 13:17
There was a mistake in it... I have to use $(this). Maybe it works now :) – Victor Oct 22 at 13:43
So so close, thank you! - I get: <img src="[example.co.uk/wp-content/uploads/…; - Just need to get rid of the left bracket? – Keith Donegan Oct 22 at 13:46
Ah! This guy know Regex X( stackoverflow.com/questions/1077541/… – Rakesh Juyal Oct 22 at 13:50
Another stupid error :P it is done now, I think! – Victor Oct 22 at 14:00
show 1 more comment

Your Answer

Get an OpenID
or

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