Dienstag, 14. Juni 2011
jQuery On Document Ready

$(document).ready(function()
{
$("div").doSomething();
});

// oder kürzer:

$(function()
{
$("div").doSomething();
});

... link (0 Kommentare)   ... comment


jQuery Context
Im Context eines Elements jQuery ausführen:


// Einen Button auswählen:
ok_button = $('button#ok');

// Innerhalb des Buttons ein 'span' Element auswählen:
$('span', ok_button)

... link (0 Kommentare)   ... comment