hide

Using show hide individually on a series of images within one div

I'm a total noob to JQuery, and I've been tasked with finishing a project beyond my ability. I've got a series of images each in it's own div with an associated hidden paragraph. I can use simple show/hide script to get the paragraph from the first div to show and hide properly, but once I add more image divs to the mix, the code eit...

using jquery to display words consecutively

I have a page that has 2 columns of words, 20 total, that are of a certain class (dim) and each a unique id. The ‘dim’ class defines the words as hidden. I have the following jQuery code running when I press a button: $().ready(function() { var x = 20; // will be dynamic later :-) $("#btn1").click(function() { f...

jQuery slideToggle() Internet Explorer problem and jumpy animation

Hey yaa! I have a big problem with my jquery. I finally made it that my slidetoggle runs in firefox. The animation is a little bit jumpy in the end of the animation. I read a lot of workarounds, but somehow nothing helped me really. Perhaps anyone of you can rescue me out of this dilemma. The other bigger problem is that the hidden div...

Problem Integrating jquery show-hide with Dynamic Drive Step Carousel Viewer v1.8

I'm using Dynamic Drive Step Carousel Viewer v1.8 so show a series of item images (div class="panel") within a #scroll.belt div. Each image panel includes a hidden <p> containing alarger version of the image and some text description. So far, so good. When a user clicks on any image, I want the hidden <p> associated with that image to a...

on jQuery: with a lot of items show only div of this anchor clicked

first of all: sorry for my english i have a webpage like this <div class="item"><div class="details"> <ul> <li><a href="#">Show div 1</a></li> <li><a href="#">Show div 2</a></li> <li><a href="#">Show div 3</a></li> </ul> <div>div 1</div> <div>div 2</div> <div>div 3</div> </div></div> IMPORTANT: i have several divs called 'i...

Jquery attempting to hide element when clicking on a child

I am trying to hide an element when an image with the ID of 'close' is clicked. $('#close').click(function() { $('#ordercell').hide('slide'); }); Should be all I need, from what I can tell, but nothing is happening when I click. $(document).keyup(function(event) { if (event.keyCode ==27) { $('#ordercell').hide('slide'...

Updateprogess image is not ending or disappearing or vanishing or hiding after Response.Redirect is called.

I have an updateprogress bar, displaying a text "loading". After I hit a imagebutton (I am using it for downloading a file) inside my update panel, with a click event, It calls click function , and click function is like below. The download screen of open, save, close cames. And updateprogress bar displays "loading". But after downloadin...

How to open new window without titlebar in javascript

How to open new window without titlebar. ...

show div depending on select option

Oh help, I've tried it a million different ways yet it still does not work: If you select update or final from a select/option box, it should show the div that has an input field in it. It only does what the default shows in the switch statement. Of course, it's only after a selection is made that I want it to determine whether it shows ...

C# Form Problem: new form losing control and randomly hiding

Hello, I'm encountering strange behavior with forms on a c# 3.5 app. On a button click, my form1 hides itself, creates a new form2, and shows form2. Form1 also contains the event method triggered when form2 closes. Here's the code inside Form1: Form2 form2; void button1_Click(object sender, EventArgs e) { this....

Make search input to filter through list Jquery

Hey, I am trying to create a search field that will filter or show/hide(which ever is best) the list elements based on what the user typed in and clicked the search button. I have no idea how to do this. everything I tried does not work unfortunately and im unsure of the best approach for this, like do i use show and hide or is there som...

Remove view name from Eclipse menu Window -> Show View

I need to remove the name/shortcut of the view which I have created from the Window->Show View menu. Because I display this view in a separate menu. Is there any way to hide/remove its entry from Window->Show View menu. Thanks in advance ...

restful image url obfuscation and click tracking

Hi There. I am wondering if anybody out there could explain or provide online examples (yes, I have already done a lot of googling for this) of how to: conceal the images that users are uploading to our site and how to track clicks of those images I noticed that a popular site out there has the following for an image url: http://...

JS: Hiding DIV based on another DIVs content

I am looking to hide a number of DIVs based upon the specific text of another DIV. My Javascript (below) isn't working. The HTML: <div id="LEGEND">abAB</div> <div id="small-a"></div> <div id="small-b"></div> <div id="big-a"></div> <div id="big-b"></div> If the LEGEND DIV contains the text a, then I want it to show only DIV small...

jQuery: How to hide a frame on parent?

Hello, I have the main page that contains multiple frames within the frameset. One of the frames is a toolbar with buttons, I would like to be able to press a button on that toolbar and it will go and hide one of the frames on the main page. I've tried the following from within the toolbar frame but it doesn't work... $(document).pare...

hide app from activity monitor using objective c

hi, if i have an app written in objective c, is there a way to hide it from being shown in activity monitor? ...

How to hide a modal dialogbox in MFC application?

hey guys..I have a hard time hiding the modal dialog box...to tell u exactly..what i am doing is..I am trying a design a UI for my own application in MFC..its kinda setup assistant.. In the 1st dialog box i have NEXT button so when I click that it has to hide the 1st dialog box and move to the 2nd dialog box..where i have some controls i...

show/hide ajax? javascript toggle

Hi I'm looking for a wordpress plugin that hides to start with the when I click say an arrow image an ajax feature pops out with say a contact form inside and also another show hide feature at the bottom of the page to show and hide multiple divs. Is there a plugin that can do all this? My pages have to be editable for my client so i...

Jquery solution hide/show easing expandable effect?

Hi does anyone know an effective jquery fix that does something like the sidebar effect on this website. I suppose its like an easing expandable effect? http://wordpress.digitalnature.ro/mystique/ Thanks judi ...

Show/hide table using button in php page

Hello, I want to display a data table when i click a button in the same php page. The button is used in a form with other inputs such as some text. The data table is hide by default. And it get the values from the form, and then make a query in database and display them in it. How can i achieve the function of display/hide ? Do you ...