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


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


Samstag, 7. Mai 2011
Parsing a XML file with SAX
// Create a JAXP "parser factory" for creating SAX parsers

SAXParserFactory spf =
SAXParserFactory.newInstance();

// Configure the parser factory for the type of parsers we require

spf.setValidating(false);

// Now use the parser factory to create a SAXParser object
// Note that SAXParser is a JAXP class, not a SAX class

SAXParser sp = spf.newSAXParser();

// Finally, tell the parser to parse the input and notify the handler

sp.parse(new InputSource(new FileInputStream(file)), defaultHandler);

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