I have an image that has a border and shouldn't in Chrome, Safari, IE and Opera, but not in Firefox. I'm assuming its a browser default issue, but I am struggling with how to remove it because it is being run as an AB split test and I am unable to modify the base html/css to run the test. I need to do this using javaScript/jQuery.
The border I need to remove is around the "selected" image.
Here is what I tried:
$('.selectImg').css({
position:'absolute',
top:'112px',
left:'5px',
height:'26px',
width:'90px',
border: 'none',
borderStyle:'none',
backgroundImage: "url('http://www.annsbridalbargains.com/assets/ann/images/global/selectedOption.jpg')"
});
Here is the fiddle: http://jsfiddle.net/2rULC/8/
I need to remove it for IE, Chrome and Safari. Opera could be overlooked if necessary. It looks and functions as it should in Firefox.