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
<table> | |
<thead></thead> | |
<tbody></tbody> | |
<tfoot></tfoot> | |
</table> |
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
<table> | |
<thead></thead> | |
<tfoot></tfoot> | |
<tbody></tbody> | |
</table> |
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
<form> | |
<!-- Added button to top --> | |
<input type="submit" name="continue" value="Continue" /> | |
<div> | |
<label for="firstName">First name</label> | |
<input type="text" name="firstName" id="firstName" /> | |
</div> | |
<div> | |
<label for="lastName">Last name</label> | |
<input type="text" name="lastName" id="lastName" /> |
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
<form> | |
<h2>Post code finder</h2> | |
<div> | |
<label for="postcode">Postcode</label> | |
<input type="text" name="postcode" id="postcode" /> | |
<input type="submit" name="checkPostcode" value="Check postcode"/> | |
</div> | |
</form> | |
<form> | |
<div> |
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
var re = new RegExp("^([a-zA-Z])$"); |
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
var re = new RegExp("^([a-zA-Z\])$"); |
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
var re = new RegExp("^([a-zA-Z\\])$"); |
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
var myString = "hello there \" "; // this will output: hello there " |
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
var re = new RegExp("^([a-zA-Z\\\\])$"); |
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
var re = /^([a-zA-Z\\])+$/; // without instantiating it (in quotes)var re2 = new RegExp("^([a-zA-Z\\\\])+$"); |