Even if you get the correct code, I think you want.
$("#three").click(function() { $('#one').css("border", "none"); });
If you set the border style to an empty string, it will not override the value set by CSS. You need to specify a value that will be applied instead. Using an empty string will remove the style property in the element, as a result of which the cascading style will be applied to the inline style tag.
tvanfosson
source share