Tagged Questions
The hidden tag has no wiki summary.
81
votes
8answers
29k views
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.
11
votes
3answers
1k views
Hidden Features Of R?
What are some of the R statistical language's "hidden features"?
Similar threads:
Hidden Features of C++
Hidden Features of C#
Hidden Features of JavaScript
Hidden Features of Java
Hidden Features ...
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:
...
9
votes
4answers
39k views
jquery selector can't read from hidden field
(answers aggregated into another question)
The following jquery 1.3.2 code works:
<input type="select" value="236434" id="ixd" name='ixd' />
<script>
console.log( $('#ixd') );
...
8
votes
3answers
190 views
How do I make an image start at the bottom of it's container?
I have a tall image inside a short container with overflow: hidden;. The bottom of the image is cut off. How do I make the top get cut off instead of the bottom?
8
votes
11answers
2k views
UITabBar leaves a white rectangle when hidden
I have been unable to google an acceptable solution to this that can be applied to my project.
My app is a graphing tool that has three tabs; one for the graph itself and the other two are for ...
7
votes
5answers
300 views
Python and python modules easter eggs [closed]
Possible Duplicate:
Hidden features of Python
This is not really a programming question, but as it's still related to a programming language, i thought it had its place on SO, if you don't ...
7
votes
2answers
298 views
browser ctrl-f find and non-visible text
Can the browser feature of contrl+F to find text be integrated with text in popup windows.
I'd like to have some scientific reference information given when someone hovers over a species name in a ...
6
votes
7answers
1k views
Where to create/keep secret files for license information/trials on Windows/Mac OS X/Linux?
I'm writing a commercial product which uses a simple registration mechanism and allows the user to use the application for a demo period before purchasing.
My application must somewhere store the ...
6
votes
12answers
2k views
Removing .svn files from all directories
I recently converted my cvs repository to svn using cvs2svn and I recently noticed that every directory has a hidden folder called .svn. My current build script copies a lot of directories from my ...
5
votes
4answers
57 views
Hiding types from being listed in Assembly.GetTypes in .net
Ive been looking everywhere for a possible solution to this but can't seem to find an answer. My issue is that I have a few classes that need to completely hidden from Assembly.getTypes, as I'm ...
5
votes
1answer
337 views
Google maps in hidden div
I have a page with two tabs. The first tab has photos and the second a google map. The problem is that the google map is not completely drawing because it is in a hidden div. So I moved the ...
5
votes
6answers
2k views
JQuery. Hide elements before they rendered. Best practice
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 ...
5
votes
5answers
164 views
“Hidden” CSS file works only for FF, Opera
My friend sent me a link to this little page which shows a simple HTML+CSS layed out page. However, if you look at the source code, you'll notice there's no link to the css file.
If you're using ff ...
5
votes
4answers
778 views
Creating an offscreen frame in Java (or: how to avoid a blank menu on a Mac, when all application windows are closed)?
I am making a Mac application, and I want my menu bar to look right.
Any Mac user knows the menu bar should be in the top screen menu. Setting apple.laf.useScreenMenuBar to true in the property list ...
5
votes
4answers
1k views
What event can be captured when an HTML hidden input value is set / changed
HI,
In JavaScript when value is set to a hidden input control, which event is fired?
5
votes
4answers
6k views
Make a File/Folder Hidden on Windows with Java
I need to make a file and/or folder hidden on both Windows and Linux. I know that appending a '.' to the front of a file/folder will make it hidden on Linux, but how do I do this on Windows?
Thanks
4
votes
2answers
155 views
Javascript to show hidden div when option is selected from dropdown list
I have 5 drop down lists on a Form, under which I have DIV elements that require user input. I display the first DIV for the first drop down list and hide all the other forms using style="display: ...
4
votes
3answers
363 views
Change the scroll of an hidden div
I have an hidden div with a fixed height and a scrollbar. I would like to change the scroll position, but the browser won't le me do it, as the div is hidden.
The scrollTop property will stick to 0.
...
4
votes
4answers
823 views
Is it possible to prevent just horizontal scrolling when overflow-x is hidden?
I have a web page that has content which extends past the right edge of the browser window. I set overflow-x: hidden on <body> to turn off the bottom scrollbar, but I can still scroll ...
4
votes
6answers
2k views
How do I write to a hidden file?
I am using the TextWriter to try to write to a hidden file, and it is throwing an exception. I can't seem to figure out how to write to a hidden file.
using (TextWriter tw = new ...
3
votes
2answers
31 views
Select all hyperlink with id that is visible
I have lot of this hyperlink in my page. Some of them are visible and some are hidden.
<a class="close-reveal-modal" id="close_car2">×</a>
<a class="close-reveal-modal" ...
3
votes
3answers
77 views
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 ...
3
votes
2answers
241 views
What are the hidden Shortcuts in Swing Components?
I found out Ctrl+Shift+O in my JTextPane changes the ComponentOrientation.
For my own TextEditor I have to disable this, but are there other Shortcuts in JTextPane or in other Swing-Components?
...
3
votes
1answer
173 views
need more suggestions for hiding user input
I'm trying to get a script that works both in a native windows shell and a cygwin shell (via ssh) that prompts for and reads a password entered by the user. So far, I have tried the following ...
3
votes
2answers
314 views
which is better for seo, a div with a style set to hidden or an title tag for a jquery tooltip
Wondering what would be better for SEO and a spider,
which is better for seo, a div with a style set to hidden or an title tag for a jquery tooltip
I am hesitant to put a div with a style set to ...
3
votes
3answers
265 views
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;
<div class="foo">helloworld</div>
...
3
votes
9answers
348 views
simple Javascript doesn't work in FireFox (but does ALL other Browsers)
I have this code which im using to reveal the Answers to some questions in an FAQ section on my website. You click the question and the div containing the answer is revealed below.
It works in ...
3
votes
2answers
204 views
Is it possible to get a list of files under a directory of a website? How?
Say I have a website www.abc.com. Under the website directory there is a page secret.html. It can be accessed directly like www.abc.com/secret.html, but there are no pages that link to it. Is it ...
3
votes
2answers
2k views
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: ...
3
votes
2answers
2k views
jCarousel not getting drawn inside a hidden div
I am using a div to populate a ul/li list and then draw a jCarousel out of it.
So this works fine:
$('#mycarousel').jcarousel();
Here is the problem:
The div containing the ul/li items could be ...
3
votes
5answers
2k views
javascript: True form reset for hidden fields
Unfortunately form.reset() function doesn't reset hidden inputs of the form.
Checked in FF3 and Chromium.
Does any one have an idea how to do the reset for hidden fields as well?
3
votes
3answers
2k views
jQuery detect visible but hidden elements
This seems like it should be fairly easy - but I can't find the right selector for it
According to the docs (http://api.jquery.com/hidden-selector/ and http://api.jquery.com/visible-selector/)...
...
3
votes
5answers
141 views
Running a program in another one?
I've written a program in C++. It's just using the console to have it as portable as possible. Unfortunately, many Windows-Users seem not to understand how to use the program (Linux Users are just ...
3
votes
2answers
463 views
How to access “overridden” inner class in Scala?
I have two traits, one extending the other, each with an inner class, one extending the other, with the same names:
trait A {
class X {
def x() = doSomething()
}
}
trait B extends A ...
3
votes
3answers
2k views
Force git to add dotfiles to repository
How can I add files starting with dot (hidden files) in git repo? Git seems to always ignore those.
When I type "git add .", dotfiles in GIT_DIR are added, but not from subdirectories. On the other ...
3
votes
5answers
134 views
Caching data by using hidden divs
I'm trying to speed up response times in my ajax web application by doing the following:
Say the user requests a page whose contents don't change (e.g a web form). When the user makes a different ...
3
votes
2answers
102 views
What is the general consensus on preemptively loading images on web pages?
So I've been wondering this for a while, I'm currently building a website which is very image oriented. What do people think of preloading images? How do they do it? (Javascript versus display:none ...
3
votes
1answer
454 views
Passing a variable value from javascript to ASP
With the help of this community, I've been able to pass a static chunk of text from javascript (clientside) to ASP 3.5 (server side)! This piece of code works beautifully:
$('.drop').droppable({
...
3
votes
3answers
2k views
Visual Studio Freezing/TFS Window Might be off screen
I am using Visual Studio 2005 with Team Foundation Server.
When I right click a file under the source control and choose "compare" VS appears to freeze until I hit escape. My guess is that the ...
2
votes
2answers
21 views
overflow:hidden doesn't work inside a table
When I try the code below, hiding the overflow doesn't work (it expands):
<table width="1024" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="1024" ...
2
votes
1answer
70 views
How do I delete a hidden HTML element?
I'm trying to delete an HTML element after changing its visibility to hidden, but I get the following error when I run the following code. It looks like I can't get a handle on the element because it ...
2
votes
3answers
30 views
Is it better to use the “hidden” CSS attribute or fetch each set of new images?
I'm trying to fetch a bunch of photo data from Flickr via a jQuery AJAX call using JSONP. I'd like to display n images at a time, then show the next n images each time the user clicks a button.
I've ...
2
votes
1answer
137 views
CSS overflow hidden property causing problems with google map api
I am trying to display google map as a tooltip using qTip jquery plugin. I have number of elements on the page and need to assign overflow: hidden to all of them. Everything works great, except for ...
2
votes
3answers
72 views
Visibility:Hidden - How to do this in firefox?
I have been reading these forums for some time, but this is my first question :)
The question is related to styling tables. If you look at my page in Chrome, at the bottom left of my table and the ...
2
votes
2answers
83 views
Using hidden value instead of $_GET or $_REQUEST
I have been using hidden values for forms.
Example:
<form method="post" action="page.php">
<input type="text" name="name""
<input type="hidden" name="book_id" value="$bookid">
...
2
votes
1answer
80 views
$('#id').is(':hidden') returns false even if this element is hidden
I have the following code:
<div id="foo" align="right">
<button type="button" id="bar" name="bar" title="bar" style="display:none;">bar</button>
</div>
In IE8 ...
2
votes
0answers
364 views
Overflow hidden not working for embedded youtube videos (within facebook like box) on the ipad
I have included the Facebook like box code on my website. However for some reason when viewed on an iPad the embedded Youtube links show outside the iframe (the other content does not). I have tried ...
2
votes
2answers
65 views
How to exposed hidden overloading from base class?
Given this code:
class base {
public:
string foo() const;
}
class derived : public base {
public:
virtual int foo(int) const;
}
How can I make base::foo() visible to derived without ...
2
votes
2answers
139 views
C# settings hidden for user
I want to get and set some application settings hidden for the user. In this case these are two tokens and two tokens that are being altered by the application. But still all four them are a secret to ...