Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 7th, 2012  |  syntax: None  |  size: 0.10 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Ich machs so ->
  2.  
  3. if(blah){
  4.   alert();
  5. }
  6.  
  7. So machen es andere ->
  8.  
  9. if(blah)
  10. {
  11.   alert();
  12. }