I have an html inspect code as shown below:
<time datetime="07:05 13-06-2020" data-area="ab">13 June <span>07:05</span></time>
The above html inspect prints the following on webpage:
13 June
What I want to achieve is instead of 13 June, it should display 13 Juin on page load.
This is what I have tried but its replacing the 13 June with Juin.
$(document).ready(function(){
$("time").replaceWith("Juin");
});