$(document).ready(function(){
function typeWriter(text, n) {
if (n < (text.length)) {
$('.test').html(text.substring(0, n+1));
n++;
setTimeout(function() {
typeWriter(text, n)
}, 100);
}
}
$('.start').click(function(e) {
e.stopPropagation();
var text = $('.test').data('text');
typeWriter(text, 0);
});
});
$(document).ready(function(){
$(".que-list>li").css({"display": "none"});
$(".start").click(function(){
$(".que-list>li").fadeIn(800);
$(this).siblings('button').hide();
$(".start").animate({marginLeft: "+=150px", marginTop: "-=100px"});
$(".start").css({"position": "fixed", top: "200px"});
});