Last active
May 24, 2019 21:44
-
-
Save exclusiveTanim/e4dd93164fd5735b6251da0338eb7291 to your computer and use it in GitHub Desktop.
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
$.index.open(); |
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
<Alloy> | |
<Window backgroundColor="blue"> | |
<WebView id="samlWebView" url="test.html" ignoreSslError="true" borderRadius="0.2"/> | |
</Window> | |
</Alloy> |
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> | |
<title>HTML Tutorial</title> | |
<body> | |
<p>Test Web Page</p> | |
<button onclick="location.href='https://www.w3schools.com/html/tryit.asp?filename=tryhtml_input'" type="button"> | |
OPEN THE TEXTFIELD PAGE!</button> | |
</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
<!DOCTYPE html> | |
<html> | |
<title>HTML Tutorial</title> | |
<body> | |
<p>Test Web Page</p> | |
<form> | |
First name: <input type="text" name="FirstName" value="My NAME"><br> | |
</form> | |
<button onclick="location.href='https://www.w3schools.com/html/tryit.asp?filename=tryhtml_input'" type="button"> | |
OPEN THE TEXTFIELD PAGE!</button> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment