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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Document</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/svg.js/2.3.1/svg.js" integrity="sha512-c2Zoy/mmWREWl7sZ6VU4znK2dMdCOSHkidDP+MUVcQBJC7aneSUDjhMCPJGDyS/FK3ImV5WpO3gqL6ShwFeCvw==" crossorigin="anonymous" referrerpolicy="no-referrer"></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
| <script> | |
| const evaJannat = { | |
| previusPos:0, // can not edit it | |
| removeClassGapToBottom:200, // you can change is but must be graterthan addClassGapToBottom value | |
| addClassGapToBottom:100,// you can change but must be smallerThen removeClassGapToBottom value | |
| cl:'test', // | |
| element(){ | |
| return document.querySelector('.backButton.js-backButton'); | |
| }, | |
| addCl(){ |
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> | |
| <head> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script> | |
| <style> | |
| table { | |
| font-family: arial, sans-serif; | |
| border-collapse: collapse; | |
| width: 100%; | |
| } |
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
| 100 => 'Continue', | |
| 101 => 'Switching Protocols', | |
| 102 => 'Processing', // RFC2518 | |
| 103 => 'Early Hints', | |
| 200 => 'OK', | |
| 201 => 'Created', | |
| 202 => 'Accepted', | |
| 203 => 'Non-Authoritative Information', | |
| 204 => 'No Content', | |
| 205 => 'Reset Content', |
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
| v => { | |
| try { | |
| const data = new String("!#$%&`()*+,./:;<=>?@[\]^_`{|}~"); | |
| data.split("").forEach( function(element, index) { | |
| if (v.includes(element)) throw "this "+element+" characters not valid characters only accept for symbol hyphen (‐) " | |
| }); | |
| if (v.includes(" ")) throw "multiline whiteSpace characters not valid characters only accept for symbol hyphen (‐) " | |
| return true | |
| } catch(e) { |
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
| @mixin xs { | |
| /* | |
| On screens that are 599px wide or less | |
| */ | |
| @media only screen and (max-width: 599px) | |
| {@content;} | |
| } |
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 lang="en"> | |
| </head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <!-- Bootstrap CSS --> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"> |
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> | |
| document.addEventListener("click", function(){ | |
| const sesstionName = 'clicktime'; //must be string | |
| const sesstionTime = 5; //min | |
| const redirectUrl = 'http://www.google.com'; | |
| const startTime = Date.now(); | |
| var sessionData = sessionStorage.getItem(sesstionName); | |
| if (!sessionData) { |
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Document</title> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> | |
| </head> | |
| <body style="padding: 0; margin: 0;"> | |
| <div class="col-12"> | |
| <div class="row no-gutters custom-multiselect" style="background:#DCEDC8; padding: 5px; border: 1px solid gold;"> |
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| <div class="play" id="demo"></div> |
NewerOlder