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
1
vote
0 answers

Excel - macro to delete value on conditional drop down list

OK, I have a macro assigned to a button to hide a tab depending on value of a drop down list. Sub Hide_Tabs() ' Hide unused Tabs If Sheet4.Range("G2") = Sheet13.Range("B154") Then Sheet5.Visible = False Else Sheet16.Visible = False End If End…
Diego
  • 105
  • 2
  • 4
  • 18
1
vote
0 answers

Hide navigation bar in jellybean

I am working on an Android app which needs full screen mode. I am able to hide action bar and status bar. But able to hide navigation bar temporarily. On touch it will reappear. I found that pm disable com.android.systemui will achieve a truly full…
1
vote
2 answers

Hide span if condition with jQuery

I want to make this span hide if value === 0 0 Then i make mini-cart-remove.js and added to header. This is my code: (function($) { $(document).ready(function() { if ($('.amount') === 0 ) { …
ntzz
  • 183
  • 4
  • 22
1
vote
1 answer

VBA to Hide and Unhide Rows using an activex check box

Can someone help me make this more efficient? It is running around 10 seconds. Thanks much! I've adapted this code to hide rows that contain "Hide" as the result of a formula in column A of my worksheet. Sub Hide_Rows() Application.Calculation…
Joy
  • 11
  • 3
1
vote
1 answer

how to hide column chart gridlines xlsxwriter

How do I hide the column grid lines on a chart in xlsxwriter. I looked at the documentation page in the chart formatting section and wasn't able to find any example. Thanks!
mongotop
  • 7,114
  • 14
  • 51
  • 76
1
vote
3 answers

hide element based on width

I would like to hide element with class="wp-caption-text" if image size is <= 300
choche7
  • 59
  • 1
  • 2
  • 9
1
vote
3 answers

jquery custom tabs not working

I have a real simple script, where the user clicks on a link, a div displays and all other divs in the container are hidden. Yet, when I click, it does not hide anything in the below code and firebug does not report any errors either:…
JohnMerlino
  • 3,900
  • 4
  • 57
  • 89
1
vote
1 answer

How to hide the console when running the django developement server?

I want to run the django developement server localy and I don't want to use a full webserver. So far I renamed manage.py to manage.pyw. Then in manage.pyw I call execute_from_command_line(['manage.py', 'runserver']) In a batch file I then use "START…
mlatu
  • 159
  • 1
  • 12
1
vote
3 answers

Hide rows when column values are duplicate

I have a table named "letters" with two columns looking like this: case_nr | date --------+----------------------- 1 | 2015-06-13 12:45:04 1 | NULL 2 | 2015-06-11 12:45:09 3 | 2015-06-12 17:41:49 3 | 2015-06-13…
Mienio
  • 99
  • 2
  • 6
1
vote
1 answer

Javascript toggle hide and show buttons in a loop Laravel 5

I am writing a Laravel 5 project with a comment section code below @foreach($Comment as $Comment)
Show
Paul Haskett
  • 21
  • 1
  • 5
1
vote
1 answer

Show/hide script in jQuery shows only last hidden div

my simple script here $(".showHide").click(function (e) { e.stopPropagation(); $(".showHide").children('.showHide').toggle(); }); $(".modal-inside").click(function (e) { e.stopPropagation(); }); $(document).bind('keydown', function(e)…
user4394417
1
vote
1 answer

Flex - Menu Created On Button Click

I created a Button in MXMXL. On button click, I create a Menu as a child of the Button. I am using an XML datasource. The reason for creating it this way, was due to the amount of custom skinning involved. A popupmenubutton was not an option.…
Dana
  • 77
  • 1
  • 9
1
vote
2 answers

How to hide UIAlertView when receiving Push Notification in iOS

In my iOS Application, I want to hide UIAlertView when receiving push notification in didreceiveRemotenotification method. Whole page of app delegate I am not writting code for show UIAlertView. Then why does it display automatically? -…
Monika Patel
  • 2,287
  • 3
  • 20
  • 45
1
vote
1 answer

Hide a div everyday except Thursday

Trying to hid the following div everyday except Thursday using this script. Can't get it to work. JS is still new, so what did I do wrong?