molily: JS / jQuery: TD bei focus selektieren

Beitrag lesen

Hallo,

1. http://aktuell.de.selfhtml.org/artikel/javascript/textauswahl/
2. Focus funktioniert hervorragend in meinem Test:

<!DOCTYPE html>  
  
<table><tr><td contenteditable>foo</td></tr></table>  
  
<script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>  
<script>  
[code lang=javascript]$('td').focus(function() {  
  console.log('focus');  
});

</script>[/code]

Mathias