В общем, после того, как обновил вордпресс, перестал запускаться скрипт на страничке. Остался только мигающий курсор.
В чем может быть проблема?
<script>
$(function(){
$(".typed").typed({
strings: ["сделать ваш бренд узнаваемым", "привлечь клиентов", "разработать уникальный дизайн", "увеличить продажи"],
// Optionally use an HTML element to grab strings from (must wrap each string in a <p>)
stringsElement: null,
// typing speed
typeSpeed: 30,
// time before typing starts
startDelay: 1200,
// backspacing speed
backSpeed: 20,
// time before backspacing
backDelay: 500,
// loop
loop: true,
// false = infinite
loopCount: false,
// show cursor
showCursor: false,
// character for cursor
cursorChar: "|",
// attribute to type (null == text)
attr: null,
// either html or text
contentType: 'html',
// call when done callback function
callback: function() {},
// starting callback function before each string
preStringTyped: function() {},
//callback for every typed string
onStringTyped: function() {},
// callback for reset
resetCallback: function() {}
});
});
</script>