Hi all, i am

Dimitar Minchev

>Wordpress developer

//front-end and back-end developer //learn more about me
//script for animated typewriting
jQuery(document).ready(function($) {
    var text = $("#ems-typed-text").text(); 
    var index = 0;
    $("#ems-typed-text").text(''); 
    setTimeout(function() {
        $("#ems-typed-text").css('display', 'inline'); 
        function typeText() {
            if (index < text.length) {
                $("#ems-typed-text").append(text.charAt(index));
                index++;
                setTimeout(typeText, 200); 
            }
        }
        typeText(); 
    }, 1500); 
});