- Tshirt
- Salary Ranges
- Years of Experience
- Company Size
- Sources
| /** | |
| * Stop an iframe or HTML5 <video> from playing | |
| * @param {Element} element The element that contains the video | |
| */ | |
| var stopVideo = function ( element ) { | |
| var iframe = element.querySelector( 'iframe'); | |
| var video = element.querySelector( 'video' ); | |
| if ( iframe ) { | |
| var iframeSrc = iframe.src; | |
| iframe.src = iframeSrc; |
| <html> | |
| <head> | |
| <style type="text/css"> | |
| .ccc{ background-color: blue; } | |
| </style> | |
| </head> | |
| <body> | |
| <script type="text/javascript"> | |
| function createClass(name,rules){ |
| #!/bin/bash | |
| cd /tmp || exit | |
| read -r -p "[s]table or [b]eta? [sS/bB] " choice | |
| choice=${choice,,} # tolower | |
| if [[ ! "$choice" =~ ^(s|b)$ ]]; then | |
| exit | |
| fi | |
| if [[ "$choice" = "s" ]]; then | |
| url=https://dl.pstmn.io/download/latest/linux64 | |
| name=Postman |