Помогите. В чем проблема ? (toggle)
$(document).ready(function () {
$("#lean_more").toggle (
function() {
$("#contentmore").fadeOut(1000);
$(this).text("Читать дальше");
},
function() {
$("#contentmore").fadeIn(1000);
$(this).text("Свернуть текст");
});
});
не работает... Почему??
|