Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

566
votes
10answers
210k 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 ...
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 ...
14
votes
4answers
14k views

how to customize `show processlist` in mysql?

I want to order by Time,but seems no way to do that ? mysql> show processlist; ...
13
votes
5answers
9k views

jQuery using append with effects

How can I use .append() with effects like show('slow') Having effects on append doesn't seem to work at all, and it give the same result as normal show(). No transitions, no animations. How can I ...
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
7answers
4k views

Activate window

i have a QMainWindow. It has this parameters: this->setWindowFlags(Qt::Tool); this->setFocusPolicy(Qt::StrongFocus); this->setAttribute(Qt::WA_QuitOnClose,true); After showEvent calles ...
5
votes
2answers
141 views

Override show method for String/Char in Haskell

I have a question: How can I override the show method for String or Char ? Thanks.
5
votes
1answer
116 views

git command to show all (lightweight) tags creation dates

Is there a one liner that shows me the dates where all git lightweight tags where created ? Something like: git show tags --format=date ?
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
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 ...
4
votes
1answer
63 views

Define a show method for an S3 class

I'm quite stunned to find out that show is an S4 generic, and that I can't find a way to use the S3 dispatching to get a show function to work. A simple demonstration: > x <- 1:5 > xx <- ...
4
votes
2answers
145 views

Does anyone know why my app won't show on the android market for an Acer Liquid Mini?

I just put an app on the market and it is showing on all phones I have except for my Acer Liquid Mini. This one: http://www.gsmarena.com/acer_liquid_mini_e310-3711.php I have phones with the same ...
4
votes
3answers
483 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
3answers
770 views

newbie question — how does one override show for a newtype?

I want to override the default integer constructors in Haskell so they produce strings (mostly for curiosity, but temporarily to make a nice input alternative for LaTeX's \frac{}{} inconvenience). I ...
3
votes
1answer
83 views

Haskell Newbie: No instance for Show in map function

In GHCI, I type the following: map (+1) [1..10] which returns [2,3,4,5,6,7,8,9,10,11] So far so good. Now I type: min (map (+1) [1..10]) and I get the following error message: No instance ...
3
votes
5answers
71 views

c# (learning) open a new window, but not always a new instance of it. (WPF)

I'm still at the learning stage of c# so don't shoot me if you see this as a dumb question ;-) In the project I have the main window, and an new window called "window1" On the main, I make a button, ...
3
votes
3answers
54 views

Show progress of PYTHON CGI script

I have a PYTHON CGI script(Content-type: text/plain) which takes about 10 minutes to execute. I want to see the execution status of my script on my browser . Like below: Part 1 of script ...
3
votes
1answer
172 views

PIL image show() doesn't work on windows 7

I would like to show an image using python on windows and other platforms. When I do: from PIL import Image im = Image.open('image.png') im.show() my default viewer opens up and tells me that ...
3
votes
1answer
201 views

SplitViewController Template show the popover manually?

I am using the splitViewController template provided by Apple. On a specific action, I want to show the rootViewController. Unfortunately, I cannot find a method that will show the popover ...
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
2answers
398 views

Haskell: Deriving Show for custom type

I have this type definition: data Operace = Op (Int->Int->Int) String (Int->Int->Int) deriving Show I want to print this type into the interactive shell (GHCi). All that should be ...
3
votes
3answers
211 views

mercurial log format with file-statuses

I was wondering, how do I return files added/modified/deleted for a commit in such a format: <modifier> file <modifier> path/to/a/file <modifier> path/to/another/file In git I do ...
3
votes
3answers
3k views

Show div base on onchange from dropdown option, help

I try to show some information inside of <div> as following: <div id="show_details" style="'display:block;' : 'display:none;'"> SHOW me </div> by choose from drop down ...
3
votes
3answers
320 views

Delphi 6 - TApplicationEvents.OnMinimize is not triggered by “Show Desktop”

I have a Delphi 6 Pro application that does certain things when the application is minimized. I do my work in the OnMinimize() event that belongs to a TApplicationEvents component. It works great ...
3
votes
2answers
342 views

Jquery toggle(), hide() not working as expected

I'm just starting out with JQuery in a Drupal environment. I have some thumbnails, and I want it so that when you click one, the bigger picture appears in the "viewport" (a hidden div appears). ...
3
votes
1answer
1k views

Asp.net MVC Visible/hide

That's a simple task in ASP.NET WebForms:If you want to show/hide a control all you need to do is set "Visible=true" or "Visible=false". However,i dont know how to accomplish that in MVC.I have a DIV ...
3
votes
1answer
135 views

How to store MySQL warnings in database?

I'd like to store warnings caused by some SQL statements in the database. E.g. after mysql> select 1/0; +------+ | 1/0 | +------+ | NULL | +------+ 1 row in set, 1 warning (0.00 sec) mysql> ...
3
votes
4answers
18k views

Show/Hide multiple DIVs with Select using jQuery

I essentially have the same situation as the person in the following question: Link: how to show/hide divs by select.(jquery) Through extensive searching within Google I was able to come up with ...
2
votes
2answers
23 views

jquery/javascript show or delay effect

I'm looking to make an image sprite fade in after a certain amount of time. (please see code below) The image sprite has CSS attributes such as hover, active, href. Then I added jquery src and code. ...
2
votes
4answers
76 views

mouseover show div

I haven't been able to find the answer to this anywhere. How do you make a hidden div appear when mousing over where it would have been? Please do not tell me how to make a link, I know how to make a ...
2
votes
7answers
42 views

JQuery event-listener for .show('drop', 500) == finished

I am searching for an event-listener, where I can check, if the animation with .show('drop', 500) has finished. I want to use it like this if($('#id').show('drop', 500) == complete){ // do some ...
2
votes
2answers
110 views

Jquery: Toggle different links/divs and return a specific one

I want to toggle my content using different links. If the contents of div2 thru div5 are hidden, it has to toggle back to div1. On loading the page the content of newboxes1 is shown. If I hit the ...
2
votes
1answer
120 views

wxPython: using Show() and Hide()

I'm working on a simple program that collects and checks user-input. In addition to displaying a message box if the user-supplied input fails the checks, I'd also like to add a prompt just to the ...
2
votes
1answer
198 views

Delphi: CoolTrayIcon's ShowBalloonHint is not working

I used CoolTrayIcon, and ShowBalloonHint to warn user to incoming messages. Everything has been working fine till today. Today once I saw the Balloon, but later never. In these period some Windows ...
2
votes
1answer
164 views

Jquery .show() not working in firefox

I have a problem with the jquery show function in firefox. Situation: I have loaded a iframe with an aspx page in a popup (fancybox). In that aspx page I have a button with an onclick event which ...
2
votes
4answers
96 views

JQuery - Show/Hide a group of fields

I want to show or hide some fields using a select's value as criteria. I don't want to repeat myself wrinting the loop again just to show and hide fields. I want to use the same loop code to show or ...
2
votes
3answers
93 views

slideUp only hides? can't show using slideUp

#bannerFijo is a fixed banner -display:none- at bottom:0px; so to show it i should slideUp but it seems that this is not working <script type="text/javascript"> function mostrar_banner(){ ...
2
votes
3answers
103 views

hide/show are *very* slow

I'm currently using the hide/show functions in jQuery to help filter a table into groups from a select box. The actual code works fine, but is incredibly slow, sometimes taking a minute or two to ...
2
votes
2answers
105 views

Jquery .show() not working with .find() on HTML5 data descriptor - help needed!

See example here: http://jsfiddle.net/mzhang23/CGfzq/9/ I am using the following code to try and allow a click on the blue shirt thumbnail image in the rightmost column to show the blue shirt image ...
2
votes
1answer
228 views

z-index problem with jquery .show()

I'm having a maddening problem with jQuery's .show() function. I have a navigation bar on top of my webpage. When you hover over the last element in the navbar, a subnav menu should pop up below ...
2
votes
1answer
106 views

Clicking on NotifyIcon flips between 3 states (not 2)

I know this can be done... since I've seen other vb.net executables do it. When I hit the program's NotifyIcon in the SystemTray... I thought I would only need to toggle between: 1> Show my form ...
2
votes
1answer
33 views

Jquery: Need help understanding why its hiding and showing list elements at the same time, am i contradicting myself in the script?

(no animation: looks fine) http://jsfiddle.net/nicktheandroid/4QaZD/ its a filterable list. Each LI contains a hidden list of words, when you type one of those hidden words in, its parent (the LI) is ...
2
votes
1answer
88 views

Difference between show and list functions

What is the difference between a show and a list function and what is the purpose for them? I'm studying CouchDB right now and reading bunch of different tutorials for CouchDB but this question never ...
2
votes
1answer
519 views

Show and hide loading status in ExtJS

I've found some documentation for pinning a loading mask to any ExtJS element, but I need it to behavior other way. I want to explicitly write a show instruction somewhere and a hide one elsewhere. ...
2
votes
1answer
364 views

Scrollbar getting stuck with jQuery show & hide

I'm using jQuery to show and hide various divs to paginate content. However, immediately after selecting an option that shows or hides the divs (for example, page 1, 2 or 3) and scrolls erratically up ...
2
votes
1answer
149 views

What does MM stand for in git show --raw output for merge commits?

I'm looking at output of git show --numstat --shortstat --raw --pretty=medium -p command and see that for merge commits output differs. This is what I'm getting: commit ...
2
votes
1answer
1k views

Show UITabBar when UIViewController pushed

Here's my situation : I have a UINavigationController inside a UITabBarController. When I drill down the navigation controller, at some point I have to hide the UITabBar because I want the view to ...
2
votes
3answers
70 views

Getting size information before the end of a show animation

When using jQuery.show(), is there a way to access information about how big the shown element will be before the animation has taken place? *edit - thought I'd give an example of where I plan to use ...
2
votes
3answers
833 views

Hide Div if Screen is Smaller than 1024

i want to hide a floating div if the user screen is < 1024 as it will overlay with my blog content area. i found this jquery on the net i am not sure how to use it. $(document).ready(function() { ...

1 2 3 4 5 11