remove border from an image which is checkbox replacement
I am using this jquery plugin,
http://jordankasper.com/jquery/imagecheck/examples.php
if y开发者_开发技巧ou see the example there is a border around the checkbox image once you click it can anyone tell me how could I remove that..
here is the fiddle http://jsfiddle.net/BSZp8/8/
thanks
You should remove the outline
in CSS, like this:
.imageCheck{
outline: none;
}
Just add outline: none
to your CSS for that element.
Add the outline CSS, and if this is a focus rectangle you're referring to, try adding a .blur() after the plugin executes / on callback.
精彩评论