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
39
votes
8 answers

Is it possible to hide the title from a link with CSS?

I have an anchor element with a title attribute. I want to hide the popup that appears when hovering over it in the browser window. In my case, it is not possible to do something like this, $("a").attr("title", ""); Because of jQuery Mobile the…
jtepe
  • 3,242
  • 2
  • 24
  • 31
38
votes
5 answers

Hide div if screen is smaller than a certain width

I want to hide a floating div if the user screen is < 1024px as it will overlay with my blog content area. I found this jQuery on the net but I am not sure how to use it. $(document).ready(function() { if ((screen.width>1024)) { // if screen…
dzul
  • 391
  • 1
  • 4
  • 6
38
votes
9 answers

Android:Hide keyboard after button click

I need to hide the android keyboard after a button click. I have seen many examples of how to do this, however, they all appear to use a specific editText object. e.g. InputMethodManager imm = (InputMethodManager)getSystemService( …
Martin Shinks
  • 545
  • 2
  • 5
  • 10
37
votes
12 answers

How to hide the status bar programmatically in iOS 7?

In ios7, how can I hide the statusbar programmatically? I am using XCode 4.6.1 (ios6.1) and I want to implement this in XCode itself.
Magesh
  • 685
  • 2
  • 7
  • 15
37
votes
9 answers

How can I hide/show a div when a button is clicked?

I have a div that contains a register wizard, and I need hide/show this div when a button is clicked. How can I do this? Below I show you the code. Thanks :)
37
votes
5 answers

Using jQuery .hide() with fading

I have a .hide() function that hides divs based on checkboxes. JS Fiddle of it working here Real site example here I'm trying to give it animation so that the .hide() will fade in/out rather than just disappear. Tried utilising the jQuery Fade…
Francesca
  • 26,842
  • 28
  • 90
  • 153
35
votes
3 answers

Hide soft keyboard on application load

I have an application with an EditText element on the main view. This means that when my application is loaded the soft keyboard appears per default. I would like to be able to hide the keyboard on load, so it does not show until i tap on the…
Esben Andersen
  • 802
  • 2
  • 9
  • 18
33
votes
6 answers

jQuery get the name of a select option

I have a dropdown list with several option, each option has a name attribute. When I select an option, a different list of checkboxes needs to appear - when another options is selected, that checkbox list should disappear and another one be…
Sam Skirrow
  • 3,647
  • 15
  • 54
  • 101
33
votes
4 answers

Quicktime X - How to hide mouse during screen capture?

I am attempting to record an app demo on the simulator, and want to use the Quicktime screen capture feature. However, I would like to hide the mouse during the capture. Is this possible? Doesn't seem to be a built in feature, so I am assuming I…
JimmyJammed
  • 9,598
  • 19
  • 79
  • 146
33
votes
2 answers

What's the difference in Qt between setVisible, setShown and show/hide

Please excuse this potentially noobish question but when trying to hide a QWidget what is the difference between calling setVisible(False), setShown(False) and hide()?
Jay
  • 3,373
  • 6
  • 38
  • 55
30
votes
2 answers

How to hide the controls in the VideoView in Android?

I am using VideoView for playing video in my app but I would like to hide the controls in it. How can I do that? Thanks.
Karthik
  • 4,943
  • 19
  • 53
  • 86
29
votes
9 answers

How to hide a console application in C#

I have a console application in C#, and I want that the user won't be able to see it. How can I do that?
menacheb
  • 475
  • 1
  • 6
  • 17
27
votes
7 answers

Jquery, hide & show list items after nth item

Say I have an unordered list, like so:
  • One
  • Two
  • Three
  • Four
  • Five
How would I, using JQuery, hide the last 2 list items and have a 'show more' link there, so when clicked upon,…
Keith Donegan
  • 26,213
  • 34
  • 94
  • 129
27
votes
4 answers

Swift - UITableView scroll event

I was wondering how to detect if the UITableView is scrolled (up or down). I want to hide the keyboard when the UITableView is scrolled with self.view.endEditing(true). Thanks in advance
Kaaseter
  • 359
  • 1
  • 5
  • 6
27
votes
3 answers

Google Maps Embed - Remove Place Card

I'm using the new Google maps embed code (iFrame) to add a small map to my website, but I can't hide the new address box in the top left corner (see image below). I have generated the map code by clicking the "Share and embed map" option (see image…
Sintyche
  • 392
  • 1
  • 3
  • 8