Jquery : intercettare pressione tasti

 $("input").keypress(function(e) {
        if (e.which == 13)  alert('return');
    }
    )

Jquery : cercare tag html in una stringa

Esempio



   1:  var text = 'some string here with <a href="#link">http:something.com</a> more string and more links also';
   2:   
   3:  text = $('<div>' + text + '</div>');
   4:   
   5:  text.find('a').each(function() {
   6:      var string = $(this).html();
   7:      
   8:  });
   9:   

Linq : Coalesce in select list

   1:  from f in tabella
   2:      select new { 
   3:                   v = ((f.campo!=null)?f.campo:"")
   4:                  }
   5:       

[OT] Papa' bis

da pochi giorni sono diventato papà, per la seconda volta, di uno splendido bambino di nome Andrea, devo dire che la gestione di 2 figli è sicuramente molto piu' complessa, in termini nostri "mi sento una risorsa sempre allocata"
«dicembre»
domlunmarmergiovensab
293012345
6789101112
13141516171819
20212223242526
272829303112
3456789