I have an element like this:
anchor [ some text ]
And i need to set it\'s text in jQuery, wit
Without changing markup:
Live Demo
var anchor = $('td').find('a').clone(); $('td').text('{ some other text }').prepend(anchor);