Reputation: 41
This was merely a syntax error from long ago. See answer!
Upvotes: 2
Views: 152
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