It tells accessibility (and other) software what the purpose of the div is. More here in the draft role attribute specification.
Yes, it's just semantic. Sending an actual click event to the button should work, but jQuery's click function doesn't do that; it triggers only the event handlers that have been hooked up to the element with jQuery, not handlers hooked up in other ways.
Edit: Actually, to my surprise, jQuery's click fires DOM0 handlers too; but not DOM2 handlers: Test page:
HTML:
<div id="theDiv">Try clicking this div directly, and using the button to
send a click via jQuery's <code>click</code> function.</div>
<input type='button' id='theButton' value='Click Me'>
JavaScript:
jQuery(function($) {
var div;
// Hook up a handler *not* using jQuery, in both the DOM0 and DOM2 ways
div = document.getElementById("theDiv");
div.onclick = dom0Handler;
if (div.addEventListener) {
div.addEventListener('click', dom2Handler, false);
}
else if (div.attachEvent) {
div.attachEvent('onclick', dom2Handler);
}
// Hook up a handler using jQuery
$("#theDiv").click(jqueryHandler);
// Trigger the click when our button is clicked
$("#theButton").click(function() {
display("Triggering <code>click</code>:");
$("#theDiv").click();
});
function dom0Handler() {
display("DOM0 handler triggered");
}
function dom2Handler() {
display("DOM2 handler triggered");
}
function jqueryHandler() {
display("jQuery handler triggered");
}
function display(msg) {
$("<p>").html(msg).appendTo(document.body);
}
});
Output when actually clicking the div:
DOM0 handler triggered
DOM2 handler triggered
jQuery handler triggered
Output when clicking the button to send a fake click via click:
Triggering click:
jQuery handler triggered
DOM0 handler triggered
Note that the DOM2-style handler was never called in that case.