java/nekurak.net-web/web/js/komentare.js
author František Kučera <franta-hg@frantovo.cz>
Wed Jan 12 16:15:37 2011 +0100 (2011-01-12)
changeset 164 e146e2e3b80b
parent 142 44ef544460ca
child 179 2ed9f3231a28
permissions -rw-r--r--
Spokojenost: soulad kuřáckosti podniku s výsledky hlasování.
     1 var komentare = {};
     2 
     3 komentare.zobrazFormular = function () {
     4 	$("#formularKomentuj").toggle();
     5 };
     6 
     7 komentare.nahled = function() {
     8 	$("#formularKomentuj .vystup").load("komentare", $("#formularKomentuj form").serialize());
     9 };
    10 
    11 komentare.odeslat = function() {
    12 	$("#formularKomentuj .vystup").load("komentare?odeslat=true", $("#formularKomentuj form").serialize());
    13 };