This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DECLARE @SearchStr nvarchar(100) | |
| SET @SearchStr = 'search term' | |
| -- Copyright © 2002 Narayana Vyas Kondreddi. All rights reserved. | |
| -- Purpose: To search all columns of all tables for a given search string | |
| -- Written by: Narayana Vyas Kondreddi | |
| -- Site: http://vyaskn.tripod.com | |
| -- Updated and tested by Tim Gaunt | |
| -- http://www.thesitedoctor.co.uk |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| window.onbeforeunload = function () { | |
| if (is_there_unsaved_data()) { | |
| return "Are you sure you want to navigate away?"; | |
| } else { | |
| return; | |
| } | |
| } | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <video id="video1" autoplay></video> | |
| <script type="text/javascript"> | |
| const v = document.getElementById('video1'); | |
| function startVideo() { | |
| navigator.getUserMedia( | |
| { video: {}, audio: {} }, | |
| stream => v.srcObject = stream, | |
| err => console.error(err) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html dir="rtl"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width,initial-scale=1.0"> | |
| <title></title> | |
| </head> | |
| <body> | |
| </body> |
NewerOlder