Skip to content

Instantly share code, notes, and snippets.

@hmert
Created July 27, 2010 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hmert/492209 to your computer and use it in GitHub Desktop.
Save hmert/492209 to your computer and use it in GitHub Desktop.
// huseyin.im
jQuery(function($){
// Tarihi 2009-06-10 -> Ocak 04, 2009
$('.zaman').each(function(){
var tarih = this.getAttribute('datetime');
tarih = tarih.split('-');
if (tarih.length != 3){
return true;
}
var aylar = 'Ocak, Şubat, Mart, Nisan, Mayıs, Haziran, Temmuz, Ağustos, Eylül, Ekim, Kasım, Aralık'.split(', ');
$(this).text(aylar[tarih[1] - 1] + ' ' + tarih[2] + ', ' + tarih[0]);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment