Bookmarklet

Create estimates

by tonytlwu

HTML

<pre id="debug"></pre>
<h1>Bookmarklets</h1>
<p>Drag to your bookmarks toolbar to save the bookmarklet.</p>
<ul>
    <li><a href="javascript:(function(){var title = prompt('Enter a new document name', 'Template - Estimates');if ( title !== null ) {var url = 'https://docs.google.com/a/weboo.biz/spreadsheets/d/13pDN-grRNwk0LHxE7hQVKvO0rR9HlZj8IKrimLX8JPo/copy?id=13pDN-grRNwk0LHxE7hQVKvO0rR9HlZj8IKrimLX8JPo&copyCollaborators=false&copyComments=false&title='+title+'&token=AC4w5VikF1tJoNfSgrbZ0zbCMNSt4Q9NeA%3A1436888674692&usp=sheets_web';var win = window.open(url, '_blank');win.focus();}})();">New Estimates</a></li>
</ul>

JavaScript

function () {
    var title = prompt("Enter a new document name", "Template - Estimates");
    if ( title !== null ) {
        var url = 'https://docs.google.com/a/weboo.biz/spreadsheets/d/13pDN-grRNwk0LHxE7hQVKvO0rR9HlZj8IKrimLX8JPo/copy?id=13pDN-grRNwk0LHxE7hQVKvO0rR9HlZj8IKrimLX8JPo&copyCollaborators=false&copyComments=false&title='+title+'&token=AC4w5VikF1tJoNfSgrbZ0zbCMNSt4Q9NeA%3A1436888674692&usp=sheets_web';
        var win = window.open(url, '_blank');
        win.focus();
    }
}