Dienstag, 14. Juni 2011
jQuery On Document Ready
mattki, 14:38h
$(document).ready(function()
{
$("div").doSomething();
});
// oder kürzer:
$(function()
{
$("div").doSomething();
});
... comment
$(document).ready(function()
{
$("div").doSomething();
});
// oder kürzer:
$(function()
{
$("div").doSomething();
});
... comment