This file contains 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
Install-Module AzureADPreview | |
-- connect to Azure Active Directory | |
-- puts up a log in dialog for your Azure subscription | |
Connect-AzureAD |
This file contains 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
Login-AzureRmAccount |
This file contains 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
Install-Module AzureAD | |
-- for preview version | |
-- Install-Module AzureADPreview | |
-- connect to Azure Active Directory | |
-- puts up a log in dialog for your Azure subscription | |
Connect-AzureAD |
This file contains 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
Install-Module MSOnline | |
-- connect to Azure Active Directory | |
-- puts up a log in dialog for your Azure subscription | |
Connect-AzureAD |
This file contains 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
Get-Module AzureRM | |
Get-Command -Module AzureRM |
This file contains 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
-- check to see if you have PowerShellGet | |
Get-Module PowerShellGet -list | Select-Object Name,Version,Path | |
Install-Module AzureRM -AllowClobber | |
-- once everything is installed, you need to load the module into your PowerShell session | |
Import-Module AzureRM |
This file contains 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
if ($(“div”).length) { | |
//do something. | |
} |
This file contains 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> | |
<title></title> | |
</head> | |
<body> | |
<div> | |
<div id="div1">My div with id attribute of div1</div> |
This file contains 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> | |
<title></title> | |
</head> | |
<body> | |
<p id="hellothere" class="hello">Hello</p> | |
<p class="hello">World</p> | |
<script src="Scripts/jquery-2.1.0.js"></script> | |
<script> |
This file contains 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> | |
<title></title> | |
</head> | |
<body> | |
<p id="hellothere" class="hello">Hello</p> | |
<p class="hello">World</p> | |
<script src="Scripts/jquery-2.1.0.js"></script> | |
<script> |
NewerOlder