Показать сообщение отдельно
  #2 (permalink)  
Старый 13.06.2013, 01:23
без статуса
Отправить личное сообщение для Deff Посмотреть профиль Найти все сообщения от Deff
 
Регистрация: 25.05.2012
Сообщений: 8,219

<iframe id="iframe00" height="16" frameborder="0"></iframe>
<script type="text/javascript">
// Get two dates
var dayDate   = new Date()
var monthDate = new Date()

// Change each date in accordance to its future use
var day	  	  = dayDate.getDate()
var month	  = monthDate.getMonth()+1

// Change the type of variables to String
var strDay = String(day)
var strMon = String(month)

// If month/day is 1-9, add a 0 in front
if (strMon.length < 2){
	strMon = "0"+strMon
}

if (strDay.length < 2){
	strDay = "0"+strDay
}

// Redirect the user to today's mp3 file
document.getElementById('iframe00').src="http://www.peterinna.com/biblecast/128/"+strMon+strDay+".mp3"
</script>
Ответить с цитированием