lkd-planet/www/common.js
2008-10-25 20:21:25 +00:00

15 lines
456 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

var entries = []
function toggleEntry(id) {
// hide summary
$("#summary_" + id).slideToggle()
if ($("#summary_" + id).css("display") == "none") {
// change the link text
$("#toggle_content_" + id).text("Bu yazıyla ilgili detayları okumak için tıklayın.")
} else {
// change the link text
$("#toggle_content_" + id).text("Bu yazının detaylarını kapatmak için tıklayın.")
}
// show the content
$("#content_" + id).slideToggle();
}