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
| <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> | |
| <soap:Header> | |
| <t:RequestServerVersion Version="Exchange2010" /> | |
| </soap:Header> | |
| <soap:Body> | |
| <m:FindItem Traversal="Shallow"> | |
| <m:ItemShape> | |
| <t:BaseShape>IdOnly</t:BaseShape> | |
| <t:AdditionalProperties> | |
| <t:FieldURI FieldURI="item:Subject" /> |
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
| function getSendMailSOAPMessage() { | |
| var soapMsg = | |
| '<?xml version="1.0" encoding="utf-8"?>' + | |
| '<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ' + | |
| ' xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" ' + | |
| ' xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" ' + | |
| ' xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">' + | |
| '<soap:Header>' + | |
| ' <t:RequestServerVersion Version="Exchange2007_SP1" />' + | |
| '</soap:Header>' + |
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> | |
| <head> | |
| <script src="http://code.jquery.com/jquery-2.1.1.min.js"></script> | |
| <script src="https://rawgithub.com/eligrey/FileSaver.js/master/FileSaver.js" type="text/javascript"></script> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> |
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
| $.ajax({ | |
| url: 'https://dav-virtru.s3.amazonaws.com/Shane/Hello_World.xml', | |
| type: 'GET', | |
| contentType: 'application/ooxml;' | |
| }).done(function (data) { | |
| }).fail(function (status) { | |
| console.log('fail'); |
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> | |
| <head> | |
| <script src="http://code.jquery.com/jquery-2.1.1.min.js"></script> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <input id="attach" type="file" /><span id="maxSize">(less than 1MB)</span> | |
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> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <script id="jsbin-javascript"> | |
| // global variable |
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> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <script id="jsbin-javascript"> |
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> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <script id="jsbin-javascript"> |
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
| http://tobyho.com/2010/11/22/javascript-constructors-and/ |
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 link = $("<a />"); | |
| link.appendTo("body"); | |
| link.attr("id", "csvDwnLink"); | |
| window.URL = window.URL || window.webkitURL; | |
| var csv = "\ufeff" + "col1;col2;col3", | |
| blob = new window.Blob([csv], {type: 'text/csv, charset=UTF-8'}), | |
| csvUrl = window.URL.createObjectURL(blob), | |
| filename = 'export.csv'; |
OlderNewer