Posted By

mblarsen on 11/22/09


Tagged

javascript date bookmarklet YouTube


Versions (?)

Youtube series episode searcher


 / Published in: JavaScript
 

Bookmarklet to search on something on youtube by date written in title. Eg. Uttaran 20th November 09 Part 1. The code will automatically insert date.

  1. // Today's date
  2. javascript:(function(){var d=new Date();var month=new Array(12);month[0]="january";month[1]="february";month[2]="march";month[3]="april";month[4]="may";month[5]="june";month[6]="july";month[7]="august";month[8]="september";month[9]="october";month[10]="november";month[11]="december";var day=d.getDate().toString();var last=day.substring(day.length,1);var post='';if(last=='1'){post='st';}else if(last=='2'){post='nd';}else if(last=='3'){post='rd';}else{post='th';}location.href='http://www.youtube.com/results?search_query=uttran+'+day+post+'+'+month[d.getMonth()]+'+09&search_type=&aq=f';})()
  3.  
  4. // Yesterday's date
  5. javascript:(function(){var d=new Date();d.setDate(d.getDate()-1);var month=new Array(12);month[0]="january";month[1]="february";month[2]="march";month[3]="april";month[4]="may";month[5]="june";month[6]="july";month[7]="august";month[8]="september";month[9]="october";month[10]="november";month[11]="december";var day=d.getDate().toString();var last=day.substring(day.length,1);var post='';if(last=='1'){post='st';}else if(last=='2'){post='nd';}else if(last=='3'){post='rd';}else{post='th';}location.href='http://www.youtube.com/results?search_query=uttran+'+day+post+'+'+month[d.getMonth()]+'+09&search_type=&aq=f';})()

Report this snippet  

You need to login to post a comment.