Ryan Casalino
Ryan Casalino

Reputation: 41

jQuery typing functions

This was merely a syntax error from long ago. See answer!

Upvotes: 2

Views: 152

Answers (1)

felguerez
felguerez

Reputation: 920

It looks like your setTimeout syntax is a bit off:

window.onload = $(function() {
  $(".element").typed({
    strings: ['Are you down with the movement(Y/N)?'],
    typeSpeed: 150
  });

  setTimeout(function() {
    $(".element").editableDiv();
  }, 1000)
});

What's the editable jQuery plugin you're using?

Upvotes: 1

Related Questions