Skip to content

Instantly share code, notes, and snippets.

@bravoecho
Created December 7, 2012 19:06
Show Gist options
  • Save bravoecho/4235611 to your computer and use it in GitHub Desktop.
Save bravoecho/4235611 to your computer and use it in GitHub Desktop.
typist jQuery plugin
$.fn.typist = function (content) {
var current = [];
var remaining = content.split(/.{0}/);
var self = this;
return this.each(function () {
function typist () {
setTimeout(function () {
current.push(remaining.shift());
self.val(current.join(""));
self.trigger("focus");
if (remaining.length > 0) { typist(); }
}, 70);
}
typist();
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment