I have something like this:
$('mySelector').html("this is mine now");
Then some external JS I cannot edit or get rid of does, among other thing:
$('mySelector').on("focus", function(e){
//lots of stuff
$(this).empty();
})
Is there any way for the element to retain the HTML I added previously?