Mittwoch, 15. Juni 2011
Image in FavIcon umwandeln
FavIcons werden vom Webbrowser in der URL Leiste und in den Bookmarks angezeigt. So kann man FavIcons erstellen:

http://www.chami.com/tips/internet/110599i.html

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


Dienstag, 14. Juni 2011
jQuery On Document Ready

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

// oder kürzer:

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

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