Questions tagged [hide]

Methods for hiding visual components, particularly with regard to HTML.

For hiding segments of webpages, several options exist, such as the setting CSS display property to none and hide method.

This tag is also used for hiding options in other graphical interfaces and generally applies to "hiding" any information.

4735 questions
20
votes
7 answers

Hide a div when clicked outside of it

This question has been asked multiple times, however none of the answers seem to work for me. The css of the div is as follows: #info{ display: none; position: fixed; z-index: 500; height: 50%; width: 60%; overflow: auto; background:…
Gooey
  • 4,740
  • 10
  • 42
  • 76
19
votes
6 answers

android: how to hide folder from appearing in the Gallery

I have an application that creates a folder in the sd-card. After that, I do several operations which may result in storing different media files, graphics in my folder. The problem is that this folder is then visible in the Gallery section which is…
Farhan
  • 3,206
  • 14
  • 49
  • 62
19
votes
3 answers

How do you hide HTML5 Audio controls?

How can I hide HTML5 audio's browser specific controls? I'm making thumbnail images to represent each track and JavaScript to play/pause. Thanks! HTML:
19
votes
4 answers

How to show/hide JPanels in a JFrame?

The application I am developing is a game. What I want to do is have JPanels that appear in the JFrame, like a text or message window, and then disappear when they are no longer used. I have designed these JPanels in Netbeans as external classes…
aharlow
  • 267
  • 1
  • 4
  • 9
19
votes
1 answer

Is it possible to hide the user input from read-host in Powershell?

I´m looking for a way to hide the user input from the Read-Host cmdlet. I know I can do this with -assecurestring, but I´d like to save the input as plain text in my variable. Is there a possible way to do this?
Tobias
  • 193
  • 1
  • 1
  • 5
19
votes
4 answers

JQuery Difference between hide() and fadeOut() , show() and fadeIn()

I am new to jQuery. Currently, I am working with jQuery in my one of Cross Platform Mobile Applications. I need to hide and show some of my Page Contents on respective conditions. I have found following two methods that are working fine for me. $(…
Salman Nazir
  • 2,759
  • 2
  • 28
  • 42
19
votes
3 answers

How can I put a inside of an ?

This is not a duplicate. While I was basically looking for the same result as the other post, I wanted to go about it in a different way. They were using background image, and I wanted to use a . I am trying to make a textbox so that when the…
Ian Hazzard
  • 7,661
  • 7
  • 34
  • 60
19
votes
3 answers

Show div #id on click with jQuery

When a div is clicked, I want different div to appear. Thus, when '#music' is clicked, I want '#musicinfo' to appear. Here is the css: #music { float:left; height:25px; margin-left:25px; margin-top:25px; margin-right:80px; …
user1469270
19
votes
3 answers

Hide a GridView column by name at runtime in ASP.Net

Is it possible to show/hide a GridView column at runtime by name? I can do it via the index like the following: gridReviews.Columns[4].Visible = false; However I'd like to do the following: gridReviews.Columns["Name"].Visible = false; What's the…
Sun
  • 4,458
  • 14
  • 66
  • 108
18
votes
4 answers

How to Hide an Element and Its Space in Swift

I want to hide an element (data picker in my case) and also hide its space. So I tried this with an animation: @IBAction func showQnt(sender: AnyObject) { if (self.pickerQnt.alpha == 0.0) { UIView.animateWithDuration(0.2, delay: 0.0,…
Marco Rossini
  • 469
  • 2
  • 6
  • 19
18
votes
6 answers

jQuery: hide and show an input element

I'm trying to do is hiding/showing a certain input object if a select value is checked. Code in JSFiddle The HTML part of the code is here: Im new…
AnApprentice
  • 108,152
  • 195
  • 629
  • 1,012
17
votes
5 answers

Android Hide Keyboard Not Working - cannot hide soft keyboard

I'm developing on the Droid Incredible (and have tested on a 1.5 AVD Emulator as well), and one of the tabs in my tab widget consists of a listview and a row with an EditText and a Send button (for a chat feature). I am using the following to close…
stormin986
  • 7,672
  • 15
  • 42
  • 54