... newer stories
Dienstag, 14. Juni 2011
jQuery On Document Ready
mattki, 14:38h
$(document).ready(function()
{
$("div").doSomething();
});
// oder kürzer:
$(function()
{
$("div").doSomething();
});
... link (0 Kommentare) ... comment
jQuery Context
mattki, 14:34h
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
... older stories