Развернуть тег видео с помощью jquery

У меня есть это:

<div class="vid">

<video> bla bla bla </video>

</div>

Я должен развернуть этот тег видео, поэтому я попытался:

$( "video" ).unwrap();

Результат в окне консоли:

TypeError: undefined is not a function
message: "undefined is not a function"
stack: (...)
get stack: function () { [native code] }
set stack: function () { [native code] }
__proto__: Error

Любая подсказка?

Ткс много!

1 ответ

Это похоже на $ не определено. Вы уверены, что jQuery загружен?

Вы можете попробовать console.logИнг эти:

console.log(window.jQuery); // What's the output of this?
console.log($); // What's the output of this? 
console.log(jQuery('video')); // What's the output of this? 

Это хороший способ отладить вашу проблему.

Другие вопросы по тегам