577
edits
(Created page with '{{draft}} == JEP 12 - jetpack.selection == * Champion: Aza Raskin <aza at mozilla dot com> * Status: Implementing * Type: API Track * Created: 24 June 2009 * Reference Implemen...') |
|||
| Line 24: | Line 24: | ||
Getting and setting the selection live in a family of getters and setters, dependent on the format. | Getting and setting the selection live in a family of getters and setters, dependent on the format. | ||
''' | '''Setting the selection''' | ||
<pre class="brush:js;toolbar:false;"></pre> | <pre class="brush:js;toolbar:false;"> | ||
jetpack.selection.text = "Hello"; | |||
jetpack.selection.html = "<b>Hello</b>"; | |||
var span = document.span("img"); | |||
span.innerHTML = "Grub!"; | |||
jetpack.selection.html = span;</pre> | |||
edits