jQuery.noConflict();
jQuery(document).ready(function() {
// milliseconds
var intervalTime = 75,
div = jQuery(".animate"), st = div.text(), timer, count = 0, total = st.length;
div.html("").css("visibility", "visible");
timer = setInterval(showLetters, intervalTime);
function showLetters() {
if(count < total) {
div.html(div.text().split("_").join("") + st.charAt(count) + "");
count++;
}
else {
clearInterval(timer);
}
}
});
<div class="animate">Some text here.</div>