I have a table with language translation. I\'m trying to create a script that will hide multiple language columns. The problem is that it only hide one field at a time. I ca
$(document).ready(function () { $( ".hide" ).change(function() { var value = $( this ).val(); $('[class^=cell]').hide(); $( ".cell" + value ).show(); }) });
Fiddle