I'm learning the web world, so I'm having trouble even checking to see if there are similar questions, if you have any similar forum answers, I apologize. Now I'm going to doubt it. (I took a long time looking for something, I did not find it.)
I have a TAG with two class
in a table.
<td class="js-selector-user hide"></td>
When I click on an input type="radio" class=".js-selector-radio"
, I need to remove the class hide.
I did the jquery this way:
$(function(){
var selectRadio = $('.js-selector-radio');
var selecUser = $('.js-selector-user');
selectRadio.click(function() {
selecUser.slideUp('fast', function(){
selecUser.removeclass('.hide').slidedown('fast');
}) ;
});
});
Does not remove the class: (