Aakash Web bookmarklet

by Aakash Chakravarthy

HTML

<a href="javascript:(function(){var s='';var t=document.title;var u=location.href;if(window.getSelection){s=window.getSelection()}else if(document.getSelection){s=document.getSelection()}else if(document.selection){s=document.selection.createRange().text}newwindow=window.open('http://www.aakashweb.com/wp-admin/post-new.php?t='+t+'&u='+u+'&s='+s,'AW New Post','height=550,width=840');if(window.focus){newwindow.focus()}return false;})();">Aakash Web New Post</a>

JavaScript

/*
var s = '';
var t = document.title;
var u = location.href;
 
if (window.getSelection) { 
    s = window.getSelection(); 
}else if(document.getSelection){ 
    s = document.getSelection(); 
} else if (document.selection){ 
    s = document.selection.createRange().text; 
}

newwindow=window.open('http://www.aakashweb.com/wp-admin/post-new.php?t=' + t + '&u=' + u + '&s=' + s,'AW New Post','height=550,width=840');
if (window.focus) {newwindow.focus()}
    return false;
*/

/*
var s='';var t=document.title;var u=location.href;if(window.getSelection){s=window.getSelection()}else if(document.getSelection){s=document.getSelection()}else if(document.selection){s=document.selection.createRange().text}newwindow=window.open('http://www.aakashweb.com/wp-admin/post-new.php?t='+t+'&u='+u+'&s='+s,'AW New Post','height=550,width=840');if(window.focus){newwindow.focus()}return false;*/