Pergunta de entrevista da empresa Saint-Gobain

write syntax for show hide element in the jquery

Resposta da entrevista

Sigiloso

6 de jan. de 2023

first you can use show/ hide jquery function eg -> $(element).show() / $(element).hide() second you can use css function eg -> for show $(element).css('display','none') / for hide $(element).css('display','block')