Skip to content

Instantly share code, notes, and snippets.

View curioustushar's full-sized avatar
🎯
Focusing

Tushar Gupta curioustushar

🎯
Focusing
View GitHub Profile
@curioustushar
curioustushar / enableControls
Created June 21, 2020 10:42
Webinarjam enable video controls
Open Webinarjam
Let the video load
Once the video is loaded press F-12 to open inspect element
goto console tab
Paste the below code to enable video controls and press enter
document.querySelector('video').controls = true;
document.querySelector('.w-100.h-100.p-absolute.z-index-101').style.zIndex = -1;