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:

2024 questions
522
votes
13 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
  • 47,465
  • 10
  • 59
  • 65
386
votes
10 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:
353
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
  • 3,593
  • 3
  • 12
  • 9
285
votes
8 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
  • 5,466
  • 11
  • 48
  • 64
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,610
  • 15
  • 43
  • 91
109
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…
107
votes
4 answers

Make 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
  • 6,564
  • 4
  • 20
  • 20
81
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,602
  • 7
  • 40
  • 67
61
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,242
  • 8
  • 46
  • 70
45
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,292
  • 9
  • 55
  • 105
43
votes
3 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,423
  • 6
  • 33
  • 44
39
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
  • 632
  • 1
  • 7
  • 19
38
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,086
  • 2
  • 23
  • 50
36
votes
6 answers

Check div is hidden using jQuery

This is my div Then I have a Show button that will show the div when you click: $("show").click(function() { $("$car2").show(); }); So right now I want to check if the div #car2 is still hidden…
cyberfly
  • 5,088
  • 8
  • 41
  • 61
33
votes
2 answers

jQuery: Given a selector, find only its visible elements

This should be an easy one. I have a variable that I've already declared called $listItems. The declaration looks like this: var $listItems = $ul.children('li'); // $ul is just a selected unordered list Later in my code, I'd like to only get the…
MegaMatt
  • 21,542
  • 37
  • 97
  • 141
1
2 3
99 100