I am just curious, but why do you want to set focus to a div element?
Anyways, on a whim, I tried the code below; it appeared to work:
<div tabindex="0" id="benluc">Here you go</div>
<script>
document.getElementById("benluc").focus();
</script>
The key is the addition of tabindex="0" to...