How do i put link in typed.js script? I need Contact me, to be linked to contact page.
    <script src="js/typed.js"></script>
    <script>
      $(function(){
          $(".element").typed({
            strings: ["Welcome to my Website.", "Random text... Contact me"],
            typeSpeed: 0
          });
      });
    </script>
 **HTML**
<div class="col-md-12 col-xs-12">
    <h1 class="element"></h1>
 </div>
				
                        
Use the callback parameter.
Example: