I want to assign a div 2 display properties, I'm not sure what the correct syntax is...
#div2 {
display:none;inline-block;
}
What is the correct way to do this?
UPDATE:
#div2 {
display:none;
}
$(function() {
$("#div1").mouseover(function() {
$("#div2").css('display', 'inline-block');
}).mouseout(function(){
$("#div2").css('display', 'none');
});
});