Is there any smarter way for this code?
Hello mates,
I was wondering if is there some better way to write the code below:
- $("#fuma_tempo").hide();
- $("#fuma_qnt").hide();
- $("#fuma_ex_tempo").hide();
- $("#fuma_ex_duracao").hide();
- $('#fuma').click(function(){
- if(this.checked == true) {
- $("#fuma_tempo").show();
- $("#fuma_qnt").show();
- } else {
- $("#fuma_tempo").hide();
- $("#fuma_qnt").hide();
- }
- });
- $('#fuma_ex').click(function(){
- if(this.checked == true) {
- $("#fuma_ex_tempo").show();
- $("#fuma_ex_duracao").show();
- } else {
- $("#fuma_ex_tempo").hide();
- $("#fuma_ex_duracao").hide();
- }
- });