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
544
votes
14 answers

How can I get Eclipse to show .* files?

By default, Eclipse won't show my .htaccess file that I maintain in my project. It just shows an empty folder in the Package Viewer tree. How can I get it to show up? No obvious preferences.
jodonnell
  • 49,859
  • 10
  • 62
  • 67
430
votes
7 answers

How to get current formatted date dd/mm/yyyy in Javascript and append it to an input

I would like to add a current date to a hidden HTML tag so that it can be sent to the server: How can I add a formatted date to the VALUE attribute?
VolosBlur
  • 4,363
  • 3
  • 14
  • 9
415
votes
11 answers

How do you create a hidden div that doesn't create a line break or horizontal space?

I want to have a hidden checkbox that doesn't take up any space on the screen. If I have this:
314
votes
9 answers

jQuery - Detect value change on hidden input field

I have a hidden text field whose value gets updated via an AJAX response. When this value changes, I would like to fire an AJAX request. Can anyone advise on how to detect the change? I have…
Ben
  • 6,026
  • 11
  • 51
  • 72
131
votes
6 answers

Make floating child visible outside an overflow:hidden parent

In CSS the overflow:hidden is set on parent containers in order to allow it to expand with the height of their floating children. But it also has another interesting feature when combined with margin: auto... If PREVIOUS sibling is a floating…
marknadal
  • 7,534
  • 4
  • 25
  • 22
119
votes
5 answers

bootstrap 4 responsive utilities visible / hidden xs sm lg not working

Having an issue with the new responsive utilities hidden / visible classes, when migrating to Bootstrap 4. I am aware that .hidden- classes have been removed from v3 and replaced with .hidden-*-up .hidden-*-down. Using the new…
113
votes
14 answers

Status bar won't disappear

I'm creating an application and I want the status bar hidden. When I test the app, the status bar is hidden whilst the splash screen is shown, but once the app is fully loaded, the status bar reappears. I'm using Xcode 5 and iOS 7, and have tried…
user2397282
  • 3,798
  • 15
  • 48
  • 94
89
votes
4 answers

c++ overloaded virtual function warning by clang?

clang emits a warning when compiling the following code: struct Base { virtual void * get(char* e); // virtual void * get(char* e, int index); }; struct Derived: public Base { virtual void * get(char* e, int index); }; The warning…
Jean-Denis Muys
  • 6,772
  • 7
  • 45
  • 71
84
votes
6 answers

Is it possible to get a list of files under a directory of a website? How?

Say I have a website www.example.com. Under the website directory there is a page secret.html. It can be accessed directly like www.example.com/secret.html, but there are no pages that link to it. Is it possible to discover this page, or will it…
morpheus
  • 18,676
  • 24
  • 96
  • 159
62
votes
8 answers

Textbox hidden below keyboard in Android webview

I have created a simple iPhone/Android app, containing a normal webview. This webview calls my website. On my website there are several forms with input type=text or textarea. I have a problem with those when they are at the bottom of the page! 1)…
andreas
  • 7,844
  • 9
  • 51
  • 72
48
votes
12 answers

How to hide elements with jQuery before they get rendered?

I want to generate html layout with areas (divs, spans) that can be shown/hidden conditionally. These areas are hidden by default. If I call .hide() method with jquery on document.ready these areas may blink (browsers render partially loaded…
Andrew Florko
  • 7,672
  • 10
  • 60
  • 107
47
votes
6 answers

What's the best way to identify hidden characters in the result of a query in SQL Server (Query Analyzer)?

When trying to identify erroneous data (often needing manual review and removal), I'd like an easy way of seeing hidden characters, such as TAB, Space, Carriage return and Line feed. Is there a built-in way for this? In a similar question here on…
Andreas Jansson
  • 830
  • 1
  • 9
  • 21
47
votes
4 answers

Get the offset of a hidden element

How can I get the coordinates of a hidden element? offset() doesn't support the use for hidden elements. Any hints?
Simon
  • 1,463
  • 6
  • 34
  • 46
42
votes
7 answers

CSS: Is it correct that text content of a div overflows into the padding?

I expected that the padding inside a div would remain clear of any text. But given the following html/css, the content-text spills out into the padding;
helloworld
.foo { float: left; overflow: hidden; background: red; …
Nigel Alderton
  • 2,265
  • 2
  • 24
  • 55
42
votes
4 answers

css overflow hidden increases height of container

Please have a look at this fiddle - http://jsfiddle.net/Z27hC/ var container = document.createElement('span'); container.style.display = 'inline-block'; container.style.marginTop = '10px'; container.style.marginLeft =…
Frank Millman
  • 653
  • 1
  • 7
  • 13
1
2 3
99 100