html - spacing in a word javascript -


i wrote code:

$(document).ready(function(){     settimeout( function(){         if($("#site-type").length) {         $(".typewrite span").typed({             strings: ["show case ", "projekt"],             typespeed: 100,             backdelay: 500,             loop: false,             fontcolor: "green",             contenttype: 'html', // or text             // defaults false infinite loop             loopcount: false,       [a-za-z']+( [a-za-z']+)*$         });     }     }, 4000); }); } 

i want have space in this: hello (and here script typing)

not this: hello(and here script typing)

just guess: try replacing strings: ["show case ", "projekt"], strings: [" ", "show case ", "projekt"],


Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -