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
<div id="container"> | |
asdadd | |
<p class="hello" id="yepYep">adasdasdsad</p> | |
asdasdsa | |
</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
asdadd<P id=yepYep class=hello>adasdasdsad</P>asdasdsa |
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 flashvars = {htmlSrc: encodeURIComponent(""+getInnerXml(document.getElementById("containerId"))+"")}; | |
swfobject.embedSWF(..., flashvars, ...); |
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 regex = /^(?=(.*\d){2,})(?=(.*[a-zA-Z]){2,})[a-zA-Z0-9]{6,}$/; | |
regex.test("abcdefg"); |
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
<a href="#tab1">Tab 1</a> | |
<a href="#tab2">Tab 2</a> | |
<a href="#tab3">Tab 3</a> | |
<div id="tab1"></div> | |
<div id="tab2"></div> | |
<div id="tab3"></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
<html> | |
<head>...</head> | |
<body> | |
<div id="structureElementOne"> | |
<!-- more HTML, perhaps a header as well--> | |
<div id="myModule"> | |
Here is the main stuff that is unique to this page etc | |
</div> | |
<!-- more HTML, perhaps a footer as well--> | |
</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
<html> | |
<head>...</head> | |
<body> | |
<div id="structureElementOne"> | |
<!-- more HTML, perhaps a header as well--> | |
<?php include("myModule.php"); ?> | |
<!-- more HTML, perhaps a footer as well--> | |
</div> | |
</body> | |
</html> |
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
<html> | |
<head>...</head> | |
<body> | |
<div id="structureElementOne"> | |
<!-- more HTML, perhaps a header as well--> | |
<?php include("myModule.php"); ?> | |
<!-- more HTML, perhaps a footer as well--> | |
</div> | |
</body> | |
</html> |
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
<div id="myModule"> | |
Here is the main stuff that is unique to this page etc | |
</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
<html> | |
<head> | |
<style> | |
#wrapper { | |
display: none; /* visibility: hidden; causes the same issue*/ | |
} | |
</style> | |
<script type="text/javascript"> | |
window.onload = function() { | |
document.getElementById("textBox").focus(); |