$(document).ready(function(){
$(function(){
$("#query").typed({
strings: ["Password Reset", "Laptop Battery", "401K Benefits"],
typeSpeed: 0,
loop: true,
backDelay: 1500
});
});
$('#query').on('click', function(e){
$(this).data('typed').reset();
$("#query").val("");
$("#query").focus();
});
});
Comments
0 comments
Please sign in to leave a comment.