From your Dashboard go to Divi -> Theme Options -> Integration
And add the following code to the <head>
<script>
jQuery(document).ready(function($){
$("img")
.mouseenter(function() {
var title = $(this).attr("title");
$(this).attr("temp_title", title);
$(this).attr("title","");
})
.mouseleave(function() {
var title = $(this).attr("temp_title");
$(this).attr("title", title);
$(this).removeAttr("temp_title");
});
});
</script>