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

How do I hide a site from search engines?

I am looking to hide a site so that it doesn't show up in any search engine just wondering how I would go about this?
macroj
  • 207
  • 1
  • 2
  • 9
12
votes
2 answers

Is it possible hide iOS browser chrome on a normal webpage

So you can make a website go "full screen" and hide the addressbar/chrome on ipad if the user adds your page to their home screen, which makes an icon on the home screen that they launch your site from. You just put some meta tags like this:
Rafe
  • 8,467
  • 8
  • 47
  • 67
12
votes
5 answers

Hide a UIButton when another button is tapped

How can I hide a UIButton on the tap of another button, or any other event?
Vipin
  • 4,718
  • 12
  • 54
  • 81
12
votes
7 answers

How to hide

I am trying to hide these:

I managed to hide the Input,…
stemon
  • 599
  • 1
  • 5
  • 23
12
votes
2 answers

AngularJS - How to hide a div when clicking outside of it

I have an angularjs application which use to open and hide a hidden div. Here is a jsfiddle with a sample - jsfiddle $scope.openLogin = function(){ $scope.userLogin = true; }; $scope.hideLoginContainer = function(){ $scope.userLogin =…
Lara
  • 301
  • 2
  • 5
  • 13
12
votes
3 answers

Twitter Bootstrap Responsive - Show Table Column only on Desktop

I'm using DataTables.net + Twitter Bootstrap and the responsive layout, what I'm trying is to hide some columns of the table using the class "visible-desktop" thats shows the columns only in big sizes but It seems not to work, hides well but if I…
Santiago
  • 2,190
  • 10
  • 30
  • 59
11
votes
6 answers

How to hide an anchor tag by href #id using css

I have different anchor tags with href=#ids and I need to hide them using a general css rule for all of them, Content xxxxxxxxx Table 1.Content xxxxxxxxxxxx Table 2 I was trying to use something like…
Jces
  • 111
  • 1
  • 1
  • 3
11
votes
4 answers

jquery Flashes Div Element Before Executing .hide() and .fadeIn() Methods

This is my code: $('.items').html(response).hide().fadeIn(); The problem is that when this loads, the page "jumps" up due to the element being rendered on page first (having a height) before the .hide().fadeIn() is triggered.. is there some other…
Mackelito
  • 4,213
  • 5
  • 39
  • 78
11
votes
3 answers

Android fragments hide show OnHide/OnShow?

I am asking this cuz I am sort of curious. 1 ) Most google demos finds fragments by its ID if the fragment is already been created in xml. So if we take that approach, the way we show fragments is by hiding it and showing it since the fragments…
user498584
  • 484
  • 1
  • 8
  • 14
11
votes
2 answers

Android: EditText stays hidden behind the keyboard

Before writing this question I have read through the following answers/articles: Android soft keyboard covers edittext field Android keyboard obscures EditText http://developer.android.com/resources/articles/on-screen-inputs.html Soft Keyboard…
skaneria
  • 266
  • 2
  • 4
  • 14
11
votes
2 answers

hide iPhone address bar with 100% height

Many posts on this, but not quite for my situation. My page has flexible dimensions set to 100% width and 100% height, so the typical on-load scroll function isn't working. Any thoughts or other solutions? Thanks! CSS: * { margin:0; …
technopeasant
  • 7,809
  • 31
  • 91
  • 149
11
votes
3 answers

How to hide or secure javascript code from client side

How to secure or hide javascript code on client side. Is there any way to doing so. Thank You
KillerFish
  • 5,042
  • 16
  • 55
  • 64
11
votes
4 answers

shiny: start the app with hidden tabs, with NO delay

I would like to build an application and some of the tabs will be hidden to the user until he types the right password. I know how to do this with shinyjs::hideTab: library(shiny);library(shinyjs) ui <- fluidPage(useShinyjs(), navbarPage("hello",…
agenis
  • 8,069
  • 5
  • 53
  • 102
11
votes
1 answer

Hide button in Swift 3

I've just started with coding and I really want to know how to hide buttons. What I want to do is when I press my button: Start: I want to let the start button and the back button disappear. It's done with Outlets and Actions. I already searched a…
J. Aberson
  • 121
  • 1
  • 1
  • 3
11
votes
6 answers

hide / show tab bar when push / back. swift

Answer: Use self.tabBarController?.tabBar.hidden instead of hidesBottomBarWhenPushed in each view controller to manage whether the view controller should show a tab bar or not. override func viewWillAppear(animated: Bool) { …
Pak Ho Cheung
  • 1,382
  • 6
  • 22
  • 52