vote up 0 vote down star

i got help (http://stackoverflow.com/questions/1553601/jquery-select-a-tag-with-selector-from-a-text-veriable) on looping the static var and replacing it value, but just one question is left from it, is how can i replace finded tags with newly changed tags in the text area

Code:

var length = 30;
var end    = '...';
var text = `some string here with <a href="#link">http:something.com</a> more string and more links also`;

$('<div>' + text + '</div>').find('a').each(function() {

                var link_value = $(this).html();
		$(this).html(link_value.substring(0, length-1)+(link_value.length > length ? end : ''));
// now how can i put $(this).html() back in the text area, which it was found at?

        });
flag

73% accept rate
Where is 'length' defined? – belugabob Oct 12 at 10:25
its define above and so is end var :) – basit. Oct 12 at 10:27
I've edited my answer in the previous question – Greg Oct 12 at 11:18
nope, didnt work. – basit. Oct 12 at 11:39

2 Answers

vote up 0 vote down check
	var length = 30;
	var end    = '...';
	var div = $('<div>' + text + '</div>');
	$(div).find('a').each(function() {
		var link_value = $(this).html();
		$(this).html(link_value.substring(0, length)+(link_value.length > length ? end : ''));
	});

	var text = div.html();
link|flag
vote up 1 vote down

Actually when changing this one way or the other, the changes are made and you don't need to put it back instead just use end()

var div = $('<div>' + text + '</div>').find('a').each(function() {...}).end();
link|flag
hmmm.. i will try later on sometime, to see if it works. but thanks for the response :) – basit. Oct 12 at 11:57
When you run it through jQ it will convert the HTML to objects, so when you change an attribute on the object it will also take effect for the list of objects. – googletorp Oct 12 at 12:04

Your Answer

Get an OpenID
or

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