I thought I could do this:
$('body').on('focus', '[contenteditable]', e => {
var self = $(e)
self.data('before', self.html())
return self
})
but it's saying: "Cannot read property 'createDocumentFragment' of undefined"
$('body').on('focus', '[contenteditable]', myfocus)
function myfocus() {
var self = $(this)
self.data('before', self.html())
return self
}
p {
cursor:pointer
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p contenteditable>Click here to edit</p>
You have to use
$(e.target)
;In
myfocus
function,this
is a reference that refers to the DOMelement
that triggered theevent
.In the jquery function,
this
refers to theevent
created, so you can access theDOM
element usingevent.target
.event.target
property returns the element that triggered theevent
.