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
'use strict'; | |
/*Please refer other js file for more detail documentation*/ | |
jQuery(document).ready(function () { | |
// Check for FileReader API (HTML5) support. | |
if (!window.FileReader) { | |
alert('This browser does not support the FileReader API.'); | |
} | |
}); |
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 IE]> | |
According to the conditional comment this is IE<br /> | |
<![endif]--> | |
<!--[if IE 6]> | |
According to the conditional comment this is IE 6<br /> | |
<![endif]--> | |
<!--[if IE 7]> | |
According to the conditional comment this is IE 7<br /> | |
<![endif]--> | |
<!--[if IE 8]> |
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
//For Publishing Page | |
//SharePoint default input called MSOLayout_InDesignMode is there. If the value is 1, then page is in edit mode else it is in display mode. | |
//Hide Copy Code | |
var inDesignMode = document.forms[MSOWebPartPageFormName].MSOLayout_InDesignMode.value; | |
if (inDesignMode == "1"){ | |
// page is in edit mode | |
} | |
else{ |
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
<PublishingWebControls:EditModePanel ID="EditModelPanel1" | |
runat="server" PageDisplayMode="Edit"> | |
<h1>You are in EDIT mode</h1> | |
<!-- Place you're javascript for execute only in edit mode --> | |
</PublishingWebControls:EditModePanel> | |
<PublishingWebControls:EditModePanel ID="EditModelPanel2" | |
runat="server" PageDisplayMode="Display"> | |
<h1>You are in DISPLAY mode</h1> | |
<!-- Place you're javascript for execute only in display mode --> |
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
var MD5 = function (string) { | |
function RotateLeft(lValue, iShiftBits) { | |
return (lValue<<iShiftBits) | (lValue>>>(32-iShiftBits)); | |
} | |
function AddUnsigned(lX,lY) { | |
var lX4,lY4,lX8,lY8,lResult; | |
lX8 = (lX & 0x80000000); | |
lY8 = (lY & 0x80000000); |
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
var connection = new ActiveXObject("ADODB.Connection") ; | |
var connectionstring="Data Source=<server>;Initial Catalog=<catalog>;User ID=<user>;Password=<password>;Provider=SQLOLEDB"; | |
connection.Open(connectionstring); | |
var rs = new ActiveXObject("ADODB.Recordset"); | |
rs.Open("SELECT * FROM table", connection); | |
rs.MoveFirst | |
while(!rs.eof) |
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
//Not Supported in IE Older Versions only found to be working in modern Browsers | |
function sleep(ms) { | |
return new Promise(resolve => setTimeout(resolve, ms)); | |
} | |
async function demo() { | |
console.log('Taking a break...'); | |
await sleep(2000); | |
console.log('Two second later'); | |
} |
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 Day Name like SUN,MON instead of 0,1,2 | |
var days = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']; | |
var d = new Date(<YOUR-DATE>);//Pass a Date here | |
var dayName = days[d.getDay()];//d.getDay() function returns the day name as 0,1,2,3 here 0 = Sunday |