i have this line of code it works in google chrome but not in mozilla firefox.
$("body").on("click",".removeclass", function(){
event.returnValue = false;
if( i > 1 ){
$(this).parents('span').remove();
i--;
}
});
do you have any idea?