vote up 1 vote down star

I will show the problem with a example.

There is some text in the textbox such here:

Hi! this is a example [lnk]text[/lnk]

When i push the submit button and publish this text, the word in the [lnk] and [/lnk] tags must be a link like this www.mysite.com?link=text.

How do I make it easily with javascript or jquery?

Note: I'm not so good about javascript.

flag

80% accept rate
Don't know why this got voted down. +1 to correct. – eyelidlessness Nov 1 '08 at 23:05

1 Answer

vote up 7 vote down check

This will do the javascript for you - not sure if you need to do anything special for asp.net

<form onsubmit="return doLinks(this.elements['links']);">
<textarea name="links" rows="20" cols="80"></textarea>
<input type="submit">
</form>

<script type="text/javascript">

function doLinks(elm)
{
    var matches = elm.value.match(/\[link\](.*?)\[\/link\]/gi);
    for (var i = 0; i < matches.length; i++)
    {
    	var url = 'http://www.mysite.com/?link=' + encodeURIComponent(matches[i].substring(6, matches[i].length - 7));
    	elm.value = elm.value.replace(matches[i], url);
    }

    return true;
}

</script>
link|flag

Your Answer

Get an OpenID
or

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