jquery show hide element

There is many way to show hide elements using jQuery.

1.$("#yourElement").show();
  $("#yourElement").hide();
2.$("#yourElement").toggle();
3.$("#yourElement").css("display", "none");
$("#yourElement").css("display", "block");