Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

570
votes
10answers
212k views

How do you test if something is hidden with jQuery?

In jQuery, suppose you have an element of some kind that you're hiding and showing, using .hide(), .show() or .toggle(). How do you test to see if that element is currently hidden or visible on the ...
46
votes
25answers
35k views

UITableView and keyboard scrolling issue

after a lot of trial and error, I'm giving up and asking the question. I've seen a lot of people with similar problems but can't get all the answers to work right. I have a UITableView which is ...
41
votes
7answers
36k views

iPhone hide Navigation Bar only on first page

I have the code below that hides and shows the navigational bar. It is hidden when the first view loads and then hidden when the "children" get called. Trouble is that I cannot find the event/action ...
33
votes
8answers
37k views

Hide/Show Column in an HTML Table

I have an HTML table with several columns and I need to implement a column chooser using jquery. When a user clicks on a checkbox I want to hide/show the corresponding column in the table. I would ...
24
votes
2answers
20k views

How to hide 'Back' button on navigation bar on iPhone?

I added a navigation control to swith between Views in my app. But some of the views shouldn't have 'Back'(the previous title) button. Any ideas about how to hide the back button?
16
votes
7answers
6k views

Is there a way to change effective process name in Python?

Can I change effective process name of a Python script? I want to show a different name instead of the real name of the process when I get the system process list. In C I can set ...
11
votes
5answers
356 views

C++: rationale behind hiding rule

What's the rationale behind the hiding rule in C++? class A { void f(int); } class B : public A { void f(double); } // B::f(int) is hidden If it is a meaningful feature I think it should also be ...
11
votes
13answers
5k views

How to hide a string in binary code?

Sometimes it make sense to hide string value from binary (executable) file. For example, it really make sense to hide encryption key from executable file. What I mean when I say "hide"? Such code: ...
11
votes
7answers
28k views

Hide options in a select list using jQuery

I have an object with key/value pairs of options I want to hide/remove from a select list. Neither of the following option selectors work. What am I missing? $.each(results['hide'], function(name, ...
10
votes
5answers
8k views

Hide select option in IE using jQuery

Currently I am using jQuery to hide/show select options using following code. $("#custcol7 option[value=" + sizeValue + "]").hide(); This works fine in Firefox, but doesnt do any good in other ...
10
votes
2answers
1k views

Hiding GetHashCode/Equals/ToString from fluent interface classes intellisense in Visual Studio for C#?

I have a fluent interface for an IoC container registration process, and this contains some classes that are used to build up the registrations. For instance, I can do this: ...
9
votes
3answers
371 views

proper way to hide dynamic elements with jQuery

I have a div element which my code will fill with a dynamic amount of links. Using jquery, I want to hide all the links except the first one. This is what I came up with and it works, I was just ...
7
votes
4answers
1k views

Programatically Hide/Show Android Soft Keyboard [closed]

Possible Duplicate: How to close/hide the Android Soft Keyboard? First thing first I already saw this thread. I tried accepted methods given there..But nothing worked for me.. I have two ...
7
votes
2answers
2k views

jQuery show for 5 seconds the hide

I'm using .show to display a hidden message after a successful form submit. My question: How to display the message for 5 seconds then hide. Thanks in advance.
7
votes
6answers
2k views

How to hide a console application in C#

I have a console application in C#, and I want that the user won't be able to see it. How can I do that? Many thanks,
6
votes
3answers
205 views

jQuery - Best way to hide element? ( to prevent the element from flashing before actually hiding it )

I remember that at some point Opera ( Mostlikely it was Safari instead. ) had a problem that if you used .hide() on element, it would flash briefly before it would actually hide the element. Now if ...
6
votes
2answers
144 views

Hiding member functions in a template class

Is it possible to hide some member functions in a template class? Let's imagine we have something like: template <class T> class Increment { public: void init(T initValue) { ...
6
votes
4answers
486 views

jQuery hide() does not work as expected on IE 8

In FF this hides all divs and then shows the id that was selected from the '#rule_rule_type' menu, which is the expected behavior. In IE 8 it does not hide all div id's: <script ...
6
votes
5answers
4k views

c# hide form instead of close

how do i hide() a form? i would like when user clicks the X on the form to hide it instead of closing it. i have tried this.hide() in FormClosing but it still closes the form. please help.
5
votes
5answers
429 views

Hiding PHP source code? [closed]

Possible Duplicate: Code obfuscator for php? EDIT: The following posts are suggesting I simply minify the PHP and use a license. Read on only for entertainment :) I want to be able to hide ...
5
votes
3answers
1k views

How to hide/show a Process using c#?

While executing my program, I want to hide/minimize Microsoft Speech Recognition Application: and at the end I want to show/maximize using c#! This process is not started by me so I can't give ...
5
votes
1answer
6k views

Hide UIToolbar UIBarButtonItems

I have a UIToolbar that I set up using IB with three buttons, left, middle and right. In some situations I would like to not display the middle button. Does anybody know of a way to hide a specific ...
5
votes
1answer
16k views

Jquery animate hide and show

I would like to have two things happen at once when I click on a link. I am slowly going through Jquery documentation, but have yet to learn what I need yet. Here is a link to my site When I click ...
5
votes
3answers
15k views

Hide an element's next sibling with Javascript

I have an element grabbed from document.getElementById('the_id'). How can I get its next sibling and hide it? I tried this but it didn't work: elem.nextSibling.style.display = 'none'; Firebug error ...
4
votes
1answer
78 views

Hide block (and remember it) with javascript and cookies?

I want to implement on my site show-hidden div block as on stackoverflow.com - at a time when the user wants to hide it himself putted on button "X". May already have a ready-made solution? I am not ...
4
votes
3answers
213 views

Hiding all web page items except for single nested div

Suppose my web page has a struture like this: <body> <div id="fee"> <div id="fi"> <div id="actual_content"> ...
4
votes
3answers
420 views

how do i hide javascript code in a webpage?

Is it possible to hide the javascript code from the html of a webpage, when the source code is viewed through the browsers View Source feature? I know it is possible to obfuscate the code, but I ...
4
votes
2answers
551 views

How to crypt or hide a string in Delphi EXE?

I am currently developing an application in Delphi, in which I have to hide (obfuscate) a string in source code like str := 'Example String'. Why ? Because if I open the EXE in text editor and search ...
4
votes
2answers
131 views

skip a folder name in path while displaying in address bar

I want a folder name not to be displayed in address bar. Example: hiding "members" folder: www.mysite.com/members/jonesmith/index.php www.mysite.com/members/tome/index.php ...
4
votes
1answer
68 views

Perforce - Hiding/Blocking revised file information in a changelist

On P4V windows app,I can select a particular user and a workspace and see the user's list of changes on that particular workspace. When I click a particular changelist from the list of changes, I can ...
4
votes
3answers
486 views

jQuery show/hide images on checking checkboxes

I have a table like this, and i have a checkbox at each row and checkboxes on each column. So i want to show/hide an tick mark image next to data in each td when i check the checkbox in the row and ...
4
votes
1answer
3k views

JQUERY Prepending an LI to an UL with Animation

I have a UL and I'm working to dynamically add a new LI to the top of the UL with some animation. I have the following so far which works ok: $("#container").prepend('<li ...
4
votes
2answers
6k views

Android: how to hide and then show View with animation effect?

I have similar question like this one: http://stackoverflow.com/questions/2079074/update-layout-with-the-animation Basically: I have one vertical LinearLayout View with edittext, button and then ...
4
votes
2answers
102 views

Cannot get click() function to work on jQuery

Thanks in advance for the help: This function works fine in dropping in the div from the first click function, but WILL NOT acknowledge the second click function in any capacity whatsoever. I can ...
4
votes
4answers
1k views

jQuery, trying to remove a hidden div after x seconds?

Hey there, I am trying to have a div "hide", then "remove" once the hide animation is finished. It seems I can get either to work, but not both. I have tried using the setTimeout, but this only ...
4
votes
3answers
966 views

how to hide the virtual keyboard

I don't want to show the virtual keyboard. I tried the below method but it doesn't make any difference. InputMethodManager imm = ...
4
votes
3answers
462 views

How to hide __methods__ in python?

I just wondered, how to hide special __.*__ methods in python*? Especially I am using an interactive python interpreter with tab-completion, and I would like to display only the methods my ...
4
votes
9answers
1k views

Is it possible to hide or scramble/obfuscate the javascript code of a webpage?

I understand that client side code must be readable from the browser but I wonder (since there are too many things that I ignore) if there are ways to obfuscate to code to the end user and, if not ...
4
votes
1answer
824 views

Hiding namespaces containing only internal types in a class library?

I have a class library that has a couple of namespaces containing only internal types. However, when using the class library in an application project, the namespaces shows up in intellisense, but of ...
4
votes
5answers
790 views

Hide form at launch

I have a program which only needs a NotifyIcon to work as intended. So I've been trying to get the main form to hide when the program starts. In frmMain_Load, I tried both this.Hide(); this.Visible ...
4
votes
6answers
6k views

Hide a form's taskbar button without using WS_EX_TOOLWIN

I need to hide a Windows form from the taskbar but I can't use WS_EX_TOOLWINDOW because I need the system menu and min/max buttons on the form's title bar. If I switch the form to a tool window at ...
3
votes
1answer
52 views

combobox hide arrow

i want to have combobox that would display an arrow only on hover else want to hide it : I tried following but it works only in Chrome & NO other browser (mozilla,ie) select { ...
3
votes
1answer
44 views

Get first n elements of each parent in jQuery

If a page has many ul lists with various children, is there an easy way to only show the first five for each ul item, for instance? I know I can give each ul tag a unique id and then do like ...
3
votes
2answers
54 views

How can I change this code to show a hidden form with a menu drop down instead of a checkbox?

This code is working great, but I'd like to change it so it uses a drop-down menu choice instead of a checkbox. For example, the Dropdown menu choices for "More?" would be "yes" or "no". If "yes" is ...
3
votes
4answers
88 views

The jquery hide function

I have a general query about the jquery hide function. I have looked around, and cant seem to find a straight answer. I want to know if the objects being hidden on page load are still loaded in and ...
3
votes
2answers
93 views

Where is my mistake using JavaScript and jQuery

I have a question actually I need one if/else for hide or show one div, I had wrote the following function but it didn’t work: jQuery(document).ready(function(){ /*show div OtraUniversidad when ...
3
votes
4answers
145 views

Jquery find and hide div with duplicate id or html

I have several div's with same class , so first i want to find which one has duplicate class name and then i want to hide all of the div's except the first one <div class="jquery"> ...
3
votes
2answers
138 views

How to hide a popup window after some seconds if the cursor exits

I have a JDialog as a Popup which shows up for 3 seconds and dispose. It comes up at cursor position and has to dispose only if the cursor exits the popup. If the cursor entered the Popup the timer ...
3
votes
5answers
175 views

Hide PHP from user

Is there a way to hide the fact that I'm using PHP from my users? I wanted to do this for two reasons: 1) So the links in the address bar look cleaner (like here on stackoverflow) 2) To prevent ...
3
votes
2answers
281 views

Close other open divs on click

I've got several divs hidden in the overflow of a parent and have them animating up into view on click of the corresponding nav menu item, but I want each div to return to its original position once ...

1 2 3 4 5 18