How can i get border style with jQuery. The following is not working
$(\'#get\').click(function() { var x = $(\'div\').css(\'borderStyle\'); alert(x) })
Apparently you must specify the side.
Like that :
var x = $('div').css("border-left-style");
http://jsfiddle.net/s7YAN/45/
I think it's because each side could have a different size, color and style.