Edit in JSFiddle

$('button').on('click',function(){
	TweenLite.to('.box', 2, {text:"This is the new text", ease:Linear.easeNone});
})
<button type="button">Click!!</button>
<p class="box">Text plugin</p>
.box{border:1px solid #000}