Questions tagged [hidden]

Hidden could refer to a style value in CSS for the visibility property, a selector in jQuery, a possible value for the type attribute of an input or to an `HTML5` attribute.

Hidden could refer to a style value in CSS for the visibilityproperty, a selector in jQuery, a possible value for the type attribute of to an input or an HTML5 attribute.

For files, use .

See:

2114 questions
25
votes
2 answers

Excluding hidden files from du command output with --exclude, grep -v or sed

I'm trying to check with Disk Usage tool how big are my home directory folders but it also prints out folders and files starting with dot. I can't seem to filter them out. du -h --exclude="?" du -h | grep -v "?" du -h | grep -ve "?" du -h | sed…
sebastian_t
  • 2,241
  • 6
  • 23
  • 39
25
votes
2 answers

hidden input change event

How can I detect a change of the value of a hidden input? I've already tried these approaches without success: $('#id_inpout').live('change',function () { var id_el = $(this).attr('id'); alert(id_el); }); and…
chokrijobs
  • 761
  • 1
  • 6
  • 10
24
votes
7 answers

How do I detect and connect to a hidden SSID on my Raspiberry Pi 3 (Raspbian)?

How do I configure my Raspberry Pi 3 (running Raspbian) to connect to a hidden network? I know it involves editing the /etc/network/interfaces file and the wpa_supplicant.conf file. I've followed a few other guides, but when I make these file…
Kylecrocodyle
  • 489
  • 1
  • 3
  • 9
24
votes
4 answers

Android hidden application

I'm writing a (legal) spy program. I want to make this program hidden on the launcher (so that no icon is shown). I tried to remove line from AndroidManifest.xml, but then the user can't…
TN888
  • 7,659
  • 9
  • 48
  • 84
23
votes
4 answers

Fragment onHiddenChanged not called

I recently added Fragments to my applications. For a new application i'll need to get notified as soon as my fragment is shown. So i can do some calculations as soon as my fragment is shown again. My Fragment is used with a TabIndicator and it's…
mikepenz
  • 12,708
  • 14
  • 77
  • 117
23
votes
4 answers

overflow:hidden not working with translation in positive direction

I came across with a weird thing lately with overflow: hidden;. I set it to an element, and then I want to transform the elements in it with translate(), when it translates in negative direction it will be hidden, but if I translate in the positive…
gerhard
  • 427
  • 1
  • 4
  • 12
22
votes
7 answers

how to pass array through hidden field

here my code $order[$j][0]="Euclidean Geomethiyil Kodpagugal"; $order[$j][1]=$q16; $j++; hidden field-
ppp
  • 331
  • 2
  • 5
  • 9
22
votes
4 answers

Protractor : wait for element to become invisible/hidden

I saw other protractor related post mentioning about how to wait for an element to become visible. However, recently, I ran into an opposite use case. I wanted to wait for an element until it becomes invisible. Since I could not find anything…
vichsu
  • 1,880
  • 5
  • 17
  • 20
22
votes
2 answers

what's the difference between view's hidden = yes and alpha = 0.0f

I have a question about UIView, what's the difference between views hidden, alpha and opaque? The effect of setting view: hidden = yes and view.alpha = 0.0f is the same.
joebo
  • 235
  • 1
  • 3
  • 6
21
votes
3 answers

Make hidden table column take no space in SSRS 2008 R2

Has anyone figured out a good way to make a hidden table/matrix column take no horizontal space? I could use some crazy conditionals to dynamically determine the contents of the columns (effectively sliding them leftward as far as possible), but…
ErikE
  • 48,881
  • 23
  • 151
  • 196
21
votes
5 answers

How to create a hidden navbar with bootstrap that shows after you scroll?

Can you tell me how I can create with bootstrap a navbar which is hidden and only shows after you start scrolling the page ?
21
votes
2 answers

Hidden divs taking up space

I've set up all my navigation for my website as hide.show divs (using behaviours). It all works pretty well, but I've now realised the problem of the divs taking up space even when they're hidden, extending the height of my wrapper far too much. I…
Shaun Wilson
  • 211
  • 1
  • 2
  • 3
21
votes
1 answer

Could not find module, it is a member of the hidden package haskell98

When I try to compile a simple source file with import IO or import Random, the build fails with an error message like this: Could not find module 'IO' It is a member of the hidden package 'haskell98-2.0.0.1' Use -v to see a list of the files…
user2301210
  • 399
  • 3
  • 12
21
votes
2 answers

Position:absolute element being hidden behind later elements

I've put together a jsfiddle to illustrate my problem here. Essentially, I've got an absolutely-positioned menu system above my main content, but the content seems to be floating in front of the menus. Hover over "Link 3" to see that it's just the…
user1684248
  • 213
  • 1
  • 2
  • 4
20
votes
2 answers

Python Selenium: Finds h1 element but returns empty text string

I am trying to get the text in the header on this page: iShares FTSE MIB UCITS ETF EUR (Dist) The tag looks like this:

iShares FTSE MIB UCITS ETF EUR (Dist)

I am…
P A N
  • 5,642
  • 15
  • 52
  • 103