Somero2002_02italia2005-05_131South.Africa.Roadtrip.2007-08_353Kuortti.2010-06-26Wakayama,
Japan
2010-04-20Oslo
2010-12-04Nanbudo_Norge2007-12_038Helsinki2005-10-15_16_042Kobe,
Japan
2010-05-01italia2005-04_219Kyoto
2011-05-04
Shimogamo
Jinja,
Ryukyu
Kobujutsu
- Bo
kumiteInujima,
Japan
2010-04-30Nanbudo_WCh2006_076Need for
umbrella
in Kobe
2011-06-10Kuortti.2010-06-26Japan
2010-04-04Slovenija
2010-11
015Vesa-Rauttu-60v_1899Jodo-Milano.2008-09_035Kobe,
Japan
2010-04-28Nanbudo_Norge2007-12_211Osaka,
Japan
2010-04-29
Green plants survive even on a solid rock

This particular flower designates its life to live on a rock with nutrition arriving from above.

Data linking in the coming jQuery 1.4.3

The forthcoming jQuery release, version 1.4.3, should include form data linking. Currently these features can be tested via a fork of jQuery and a plugin, both available in Github.

// Data which is linked to the form
var linked = {};

// Once DOM is completely downloaded, thus ready, this is triggered
$(document).ready(function() {
    $('#profile_form').link(linked);
    $('input, select').change(function() {
        printInfo();
    });
    $('input[name=send]:button').click(function() {
        printInfo();
    });

    $(linked).data('username', 'Tonttu');
    $('input[name=password]').val('joulupukki');
    printInfo();
});

// Print visual feedback of the current values
function printInfo() {
    var str = '';
    for (var i in linked) {
        if (linked.hasOwnProperty(i)) {
            str += '<' + 'p>linked.' + i + ': ' + linked[i] + '<' + '/p>';
        }
    }
    $('#info').html(str);
}

The above example is available with the rest of the DOM elements in the html file attached.

jquery-datalink-usage.htm

Time: 02/09/2010 20:22

QR code for paazio.nanbudo.fi