---
title: "how to show html controls using jQuery"  
description: "how to show html controls using jQuery"  
author: "Anonymous User"  
published: 2018-06-18  
updated: 2018-06-18  
canonical: https://www.mindstick.com/forum/34519/how-to-show-html-controls-using-jquery  
category: "jquery"  
tags: ["jquery"]  
reading_time: 1 minute  

---

# how to show html controls using jQuery

how to show [html](https://www.mindstick.com/articles/1530/design-a-simple-stylish-calculator-using-html-css-and-javascript) [controls using jQuery](https://www.mindstick.com/forum/34518/how-to-hide-html-controls-using-jquery)

## Replies

### Reply by Prakash nidhi Verma

Using the show() methods:

// <X> is hidden elements

```
$("button").click(function(){
    $("X").show();
});
```

Syntax :

```
$("selector").show();
```

Ex:

```
$(function() {
  $("#mybutton").click(function() {
    $("#mydiv").toggle();
  });
});
```

I think, It's helpful for you.

Happy Coding :)


---

Original Source: https://www.mindstick.com/forum/34519/how-to-show-html-controls-using-jquery

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
