Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
62 views

Setting height of a DIV to correspond with location of anchor inside said DIV

Core issue : http://jsfiddle.net/pipip/P46Xg/ I have a div container with a few paragraphs of text, and inside one of these paragraphs is the following anchor <a name="stop" /> The container is ...
5
votes
3answers
81 views

Need help simplifying code

Okay, I have a page on a Drupal install that has multiple divs. I wrote a .js to test to see if there was any information inside those divs if ($('.accred').length) { $('#accred').show(); } ...
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 ...
4
votes
1answer
830 views

MVC 3 Webgrid - how do you hide columns you do not want to be visible?

I have a webgrid and there is a column I want to be visible only to certain users. Currently I have coded the grid as follows if (Context.User.IsInRole(Role.Inputter) || ...
4
votes
2answers
133 views

Performance implications when hiding a DIV by rendering it offscreen

What are the performance implications of hiding a complex portion of an HTML document within an offscreen DIV like: <div style="position:absolute;top:-10000px;left:-10000px;"> Lots of HTML ...
4
votes
3answers
644 views

How to hide desktop icons programatically?

How can I show/hide the desktop icons programatically, using C#? I'm trying to create an alternative desktop, which uses widgets, and I need to hide the old icons.
4
votes
3answers
382 views

What is the simplest way to implement pure css show/hide?

I discovered the <details> element for html5, and that made me want to determine whether it was possible to implement a simple and reusable show/hide via css alone. I have created a show/hide ...
4
votes
1answer
2k views

Show/Hide <select> dropdown, with jQuery, based on value

I'm trying to build a custom dropdownlist wich show/hide a second set of dropdowns based on it's selection. I was wondering if anyone here might be able to help with a solution to this. You can view ...
4
votes
1answer
668 views

jQuery UI button won't stay hidden in IE7

Ok, I have made a twitter-style control panel to apply filters and sorting to a list, the code for it is like this: <div id="drawer"> <div id="orderDrawer" class="subDrawer" > ...
4
votes
2answers
741 views

Is it possible to hide specific Desktop-icons with C#?

I'm searching for a way to hide specific Icons from the Desktop. I usually have way to much icons on my desktop (which makes finding a file a real hassle), so I would like to write a little tool, ...
4
votes
4answers
7k views

C# winforms startup (Splash) form not hiding

I have a winforms application in which I am using 2 Forms to display all the necessary controls. The first Form is a splash screen in which it tells the user that it it loading etc. So I am using the ...
3
votes
6answers
99 views

jquery variable?

I'm a jQuery novice, I have the following jQuery written to show a div when a specific link on a map is shown: <div id="locationmap"> <a class="linkhide" id="link1" href="#">Occupier ...
3
votes
1answer
103 views

Preventing jquery's show/hide from adding inline style?

I have a case where I need to toggle the visibility of an element based on whether a particular operation (categorization) is in progress if so, it's hidden, else it's visible. Now I have css which ...
3
votes
7answers
153 views

jQuery hide() method doesn't immediately take effect in IE8?

What we have are some images that are vertically center-aligned via jQuery. What we want to happen is to hide the misaligned images (meaning, not centered) on $(document).ready then run the function ...
3
votes
2answers
430 views

WPF Window set Focus

I have a WPF Window which I only create one time and then Show() and Hide() several times. Now I am searching a way to set the focus on a element on each Show(). Where and how can I do this?
3
votes
5answers
211 views

how do make this show/hide more concise?

There are many show/hide questions and examples but I can't find the answer. I have a simple code like this which is used in a few areas within a page. jQuery(document).ready(function () { ...
3
votes
1answer
435 views

Hide div element with jQuery, when mouse isn't moving for a period of time?

I have a broadcasting video site, with a menu, which should be hidden, when mouse isn't moving for a while (lets say 10 seconds). As well, it should appears back, with mouse move. What is the best way ...
3
votes
2answers
126 views

jquery hide not actually working (NOT IE)

jQuery is driving me nuts. Ive looked around on the web for a simple category expander slider but haven't found one. Ive attempted to create one here. The problem I'm having is when trying to hide() ...
3
votes
2answers
2k views

how to hide table columns in jQuery?

I've a table with lots of columns. I want to give users the option to select columns to be shown in table. These options would be checkboxes along with the column names. So how can I hide/unhide table ...
3
votes
5answers
1k views

Way to quickly show/hide WinForms GUI C#

I'm creating an app that is threaded. I started GUI (Announce : Form) as separate thread. That window will be very minimalistic with one input box and maybe a button. On another thread there will be ...
3
votes
8answers
11k views

jQuery show “loading” during slow operation

I'm trying to show a small loading image during a slow operation with jQuery and can't get it right. It's a BIG table with thousands of rows. When I check the "mostrarArticulosDeReferencia" checkbox ...
2
votes
2answers
40 views

Using focus and blur to show and hide a DIV in an unordered list

I am using Fred LeBlancs roundabout plugin and I have incorporated a lightbox to the "active" central image only ( why I "addClass" .active). I also want to show a hidden div with caption text when ...
2
votes
1answer
44 views

Show, hide in same time two objects Jquery?

Jquery question So i got if condition, in this condition I make div visible and want other to hide in that time. if(pass == '1') // show in msgOK-IDnumber $("div#msgOK-" + ...
2
votes
3answers
78 views

SEO for CSS and JS hide/show

We're building a site for an academic institution. This institution offers many subjects, and we don't want to show all of them at once on the homepage. So we designed a homepage that shows the 2 main ...
2
votes
3answers
167 views

JavaScript show/hide tab

What i want is hide all content first, then click one tab, the corresponding content shows (the tab becomes 'active'), where click it again it will disappear. some of the tabs are just a 'mailto' ...
2
votes
3answers
42 views

Javascript element hiding not working

I tried to hide elements in my html form by defining a javascript function at the beginning of my page and calling it through a button's onclick attribute. It seems like the browser (firefox 4.x) ...
2
votes
4answers
125 views

How to hide/show an option on click?

The select is sometimes too big so I want to filter it. I will have 3 checkboxes to turn off/on some options based on values. Like in the sample on jsfiddle if the value of an option contains d ...
2
votes
1answer
633 views

jQuery show hidden content, then auto scroll to the middle of the content

I have a button set up that when clicked, expands the page. Here is the code: /*Source:http://rpardz.com/blog/show-hide-content-jquery-tutorial*/ jQuery('.open-content').hide().before('<div ...
2
votes
3answers
348 views

WPF. How hide/show main window from another window

I have Two windows MainWindow and Login. The button which shows login located on mainWindow this.Hide(); Login li = new Login(); li.Show(); on Login Window is button which checks ...
2
votes
3answers
341 views

show and hide Span/Label text in textbox

I am trying to implement a simple trick which would hide span/label inside textbox when user starts entering text in respective textbox, and show it, on blur if textbox is empty. (It is implemented ...
2
votes
9answers
125 views

How to Reduce Size of This jQuery Script and Make it More Flexible?

I just created script that shows/hides (toggles) block of HTML. There are four buttons that each can toggle its HTML block. When any HTML block is opened, but user has been clicked on other button ...
2
votes
3answers
436 views

Implementing Show More - Show Less text on a page

I have a content oriented product. And at one point I display a list of available entities, with their full summary. Now, the said summary is the data entered by user using TinyMCE editor (i.e. it can ...
2
votes
1answer
52 views

Hiding specific options in select

Is it possible in JS/AJAX (without the use of JS frameworks like JQuery!) to hide specific < option > fields? Display:hide or Visibilty:none don't work on < option > tags... I don't want to ...
2
votes
3answers
135 views

JQuery show after hiding (this)

The element I need to show is the ".triggerso" element, (which was hidden to show the ".panelso" panel). When the user clicks the ".panelso" element I'd like the ".triggerso" element to return. ...
2
votes
2answers
182 views

jquery callback after if statement

Howdy guys, im having trouble finding help on creating a callback in certain situations. I have a piece of code which loads a links page in to an iframe and then changes the scr if another link is ...
2
votes
3answers
201 views

Modifying jquery function

Below I am using jquery to toggle display divs. What do I need to add to this to have only the first result to be active when the page loads? $(document).ready(function(){ //Hide (Collapse) the ...
2
votes
1answer
262 views

iPhone - how may I hide a view and let it's space be used by other view (like android visibility = GONE)

Do you know a simple (or not simple) way to hide a view (or anything like a view) and let the other views of the screen use the place left blank ? And make the opposite when showing back that view. ...
2
votes
2answers
108 views

Using jQuery to set a var equal to a bunch of class's and then hide that variable

I have a bunch of views: .view-1, .view-2, view-3, etc... I was using something hacky like this to get the right view showing when the right item in the navigation was clicked: $(".contact ...
2
votes
4answers
311 views

JQuery - Combining width and hide effects

Complete beginner so I'm probably missing something obvious but... I can't seem to combine an animate(width) effect with a this.hide effect, I can make either one work by commenting out the other. ...
2
votes
3answers
306 views

Hide tab bar control in tabbar project

I am working on a tabbar project and in this i also have navigation controller. and i am doing below steps :- Show the main screen navigation from first tab to 5 next screens. and on the 6th screen i ...
2
votes
4answers
705 views

Why i can't show/hide Html TR using jquery?

I have the following TR in HTML and i using JQuery <tr class="RowDiv" id="tempTR" runat="server" visible="false"> <td> <div class="LabelDiv"> ...
2
votes
2answers
291 views

jQuery Show/Hide Question

I'm just trying to preform a very simple jQuery action. I have two components: #safety and #safety-tab a, the #safety needs to be hidden on load. When the a link in the #safety-tab is clicked, it ...
2
votes
2answers
175 views

Hiding and showing parts of an html with PHP?

The example I have in HTML: <div id="red-nav-warp"> <ul id="red-nav-logo"> <li><img class="sponsors" id="sponsorone" src="media/img/logosmall.png" /></li> ...
2
votes
1answer
663 views

Using jQuery to show/hide a div and then show/hide a div within that div

I have a series of links nested within a div. When one of those links is clicked, I'd like to hide the div with the link that was clicked and show another div. Then, if a link is clicked within that ...
2
votes
1answer
247 views

replace a bunch of show/hide with switch/case in javascript

Page has menu items that would replace a 'div id=foo_(current menu item)' with 'div id=foo_(selected menu item)' in 'div class=foo' Here's what I've got, and try to keep your breakfast down... ...
2
votes
2answers
674 views

Jquery - Show/Hide - always goes up the page on click

I am using the JQuery show/hide functionality in a form (generated with php) In this form, there are 10 hidden elements, and every time the user click on an "add another" link, it displays the next ...
2
votes
4answers
2k views

jQuery Show/Hide by class when multiple items contain the said class

Thanks in advance for helping me out (for those who have time and are willing). I've written this script: $(document).ready(function() { // hides the slickbox as soon as the DOM is ready // (a ...
1
vote
6answers
40 views

Selecting untagged text with Jquery

I have the following HTML; <p class="postcontent"> <img src="#"> Some Text </p> I want to be able to hide only the text. So far I have this; jQuery(function($) { ...
1
vote
2answers
30 views

How can I show content besides image while clicking on it and show both in a wrapper using jQuery

I want to show the description of the product when I click on product image and it will show gracefully with proper background but not popup. Image should be on the same place, just content should ...
1
vote
4answers
62 views

Simple jQuery show(); hide(); confusion

I have this jQuery code: <script type="text/javascript"> $(function() { $(".one-edition img").hover(function() { $(this).next(".editions-info-text").show(); }, function() { ...

1 2 3 4 5 8