You are confusing the data() method with the element's data attribute.
The data() method returns an unrelated object of data attached to the element and not the string you are looking for.
Solution 1 - data as an attribute
To get the value you're looking for in your example, you should query the attribute with the attr() method:
$(".bar").hover(function(){alert($("#"+$(this).attr('data')));});
Solution 2 - data as an object
Using the data() method you can manually attach information to the element:
$('.bar').data('data','foo');
$(".bar").hover(function(){alert($("#"+$(this).data('data')));});
Note how in this case 'data' is just an arbitrary name for a key in the element's data object. For more on the data() method see the jQuery manual
Solution 3 - data as an object and HTML5 attribute
I believe your original intention was to query the data attribute as an HTML5 data-attribute, that according to the jQuery documentation should be automatically pulled in to jQuery's data object.
However, note that according to the HTML5 specification, HTML5 data-attributes are expected to have a data- prefix. So in order for your example to work, the attribute cannot be named data but rather data-something. For example:
<div class="bar" data-something="foo">...</div>
Which you can then access with jQuery's data() method:
$(".bar").hover(function(){alert($("#"+$(this).data('something')));});
Note how data-something is accessed with data('someting'), since jQuery automatically removes the data- prefix.