Monday, 2 September 2013

Live append from a field

Live append from a field

This is the code I have so far.
$(document).ready(function(){
var content = $('input').val();
$('span.title').append(content);
});
The problem is that when I change what's typed into the input it doesn't
re-append. Can someone help me?

No comments:

Post a Comment