[jQuery] hide() works fine - fadeOut() is not working - Don't understand....

2010-01-14 Thread Reinhard Vornholt
Hello group, ich am fairly new to jQuery and using it with my wicket application. I have a problem with quite easy situation. I would like to fadeOut() a div when someon clicks on it. Thats what I have: Arbeiter neu eingeteilt And it it is not working... If I change fadeOut() with hide() e

Re: [jQuery] Hide Table Row - Fundamentally I'm wrong.

2009-12-03 Thread Karl Swedberg
Does it not work in every browser, or just in IE? If just IE, the problem could be related to a problem with certain table elements showing a height even when hidden (jQuery 1.3.2 looks for height/width values to determine visibility). --Karl Karl Swedberg www.englishrules.com

[jQuery] Hide Table Row - Fundamentally I'm wrong.

2009-12-01 Thread mickey
Hi, I am trying to simply hide / show the body of a table with toggle(). The hide seems to work but the show doesn't. e.g. header is clicked - hide / header is clicked again - nothing. This is my code $('#myTable th').click(function() { $('tbody').toggle(); }); Thing is I know somethi

[jQuery] Hide chat content

2009-11-27 Thread Jerry Johnson
Hi, at: http://jerry.hostcule.net/chat/test.html, i have the delete link, and i want it to fade out the parent div, this is my current code: $('a.#hide').click(function() { $(this).hide(); } ); This is the link html: (2:34:28) Jerry: bkgi Delete **It is for

Re: [jQuery] .hide and .show div's

2009-11-11 Thread Joe Moore
Oops. got the selector wrong. It should be: $( function() { $(div[class^=hide-BAT].hide(); }); Joe On Wed, Nov 11, 2009 at 8:38 AM, Joe Moore wrote: > $( function() { >$(div[class=hide-BAT$].hide(); > }); > > I haven't tested this, but it should work. If not, verify the selector. > >

Re: [jQuery] .hide and .show div's

2009-11-11 Thread Joe Moore
$( function() { $(div[class=hide-BAT$].hide(); }); I haven't tested this, but it should work. If not, verify the selector. Not sure why you are giving a unique classname to all these elements. If you need it, why not use the I'd attribute? Regards, Joe On Nov 11, 2009 8:17 AM, "David pr" w

Re: [jQuery] .hide and .show div's

2009-11-11 Thread Sam Doyle
Look at jquerys find functions Sent from my iPhone On 11 Nov 2009, at 12:36, David pr wrote: Hello, Could you help me please. I have a list of hotel which I .hide and .show div's to show more or less info. so i have when the user press a button I use the code var Hcode = $(this).attr("cu

[jQuery] .hide and .show div's

2009-11-11 Thread David pr
Hello, Could you help me please. I have a list of hotel which I .hide and .show div's to show more or less info. so i have when the user press a button I use the code var Hcode = $(this).attr("custom"); $('div.Hide-' + Hcode).toggle(); but when the page loads how do I hide this div automatic

Re: [jQuery] Hide a nested UL, but show children

2009-10-31 Thread Karl Swedberg
If you don't mind removing them, as opposed to just hiding them, you could do this: $('.topMenu > li > ul > li').each(function() { this.removeChild(this.firstChild); }); --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 30, 2009, at 12:23 PM, hroyale w

RE: [jQuery] Hide a nested UL, but show children

2009-10-30 Thread Smith, Allex
want. -Original Message- From: hroyale [mailto:hroy...@gmail.com] Sent: Friday, October 30, 2009 9:24 AM To: jQuery (English) Subject: [jQuery] Hide a nested UL, but show children Hi, I have a set of nested ULs that is generated for me. I want to use it to create a drop-down navigation menu, howe

[jQuery] Hide a nested UL, but show children

2009-10-30 Thread hroyale
Hi, I have a set of nested ULs that is generated for me. I want to use it to create a drop-down navigation menu, however I don't want to use the values in the second level of ULs in the navigation. It looks something like this: home community awards (not a link)

[jQuery] hide browser toolbars using jQuery

2009-10-21 Thread Subtle
Using window.open I can achieve this, however, from what I understand window.open is normally used for popups. What I want is the first time the user opens their browser and points to my site, they should see my site with no toolbars. Is it possible to do this jQuery?

[jQuery] Hide checkbox when choosen value in select > 0

2009-10-10 Thread Tan
Hello, site wide Choosen get termwide: No choosenTerm1Term2 I have code jquery when i choosen select options value > 0 then disable checkbox : $('#edit-termwide').click(function() { if ($("#edit-termwide option:selected").length > 0) { $('#edit-sidewide').attr('disabled

[jQuery] Hide/Show if logged in

2009-10-08 Thread Painstik
Hi everyone, I can't get this out, i searched everywhere and didn't find solution... %%GLOBAL_LoginMessage% % Email Lozinka

[jQuery] Hide row if empty

2009-09-30 Thread Wacko Jacko
Hi All, If I had a list displaying data as follows: Label Here{content here if available from database} Label Here{content here if available from database} Could I hide the whole if their is nothing available to show from the database in ? Thanks in advance for your help Jack

[jQuery] Hide/Show based on radio button selected

2009-09-14 Thread mtuller
I am trying to create a script that will display content based on if a radio button is selected, and if the other is selected would hide the content. Now, each of these radio buttons are part of a radio group, so their names are the same. Most examples show input:radio [...@name=item] Since I have

[jQuery] .hide() not hiding elements in IE

2009-08-28 Thread nick.rathert
hi all, i'm having an interesting IE6 and IE7 issue that may just be par for the course. i'm curious if anyone else has run into this problem. here's the URL: http://jsbin.com/afede long story short, i have a bunch of nested lists with IDs in certain ULs, like . i'm

[jQuery] hide divs with float:left and show them again

2009-08-20 Thread simusch
Hi I have a site with a lot of small div-boxes (with images and movies within them) they are positioned with CSS and float:left. i created buttons, which show and hide either all images or all movies this works well. but when i switch between these options, the float-position of the divs goes c

[jQuery] Hide function in IE

2009-08-17 Thread pmni
Hi. I'm building a website, and use your framework to hide/show a div. This work, but in IE when click to hide/show the div, the background became black, instead to maintaine the image with alpha properties... In Firefox, Opera and Chrome works fine. Why this append? Thanks in advance, pmni

[jQuery] hide() does not hide span in IE, but does in FF

2009-08-04 Thread msmaeda
Hi, With the code below, I am having an issue that only seems to occur in IE. The issue is that the "payer_pane" span should be hidden unless the "NEW" option is selected in the "relationship_person_id" select list. In IE, the payer_pane appears despite what is selected in the "relationship_per

[jQuery] .hide function confusion

2009-06-28 Thread Hokumae
Hello, I am hosting a local community association's webpage. A key part of the site is their event calendar plugin, which is unfortunately now pretty broken due to a necessary WordPress upgrade. (I apologize for the verbosity). I am not a j-coder, but muddled around with the script enough and us

[jQuery] Hide elements cleanly, not appear then disappear

2009-06-17 Thread heldtogether
hey, i want to hide some elements on my site, but don't want to make these inaccessible for users without javascript enabled. Some users are complaining about being able to see that element for a split second before the page has finished loading and the element is hidden. Is there a way in which I

[jQuery] Hide button based on combo value

2009-06-16 Thread ciupaz
Hi all, I have a select option like this: Select a color Red Green Blue White Black and a button: How can I hide the button is the combo has "Select a color" selected, and show the button when the user select a color? Thanks in advance. Lui

[jQuery] Hide/show divs based on form parameters

2009-06-13 Thread Mark
Hi all, I'm trying to selectively hide and show divs based on what a user specifies using three select boxes in a form. I'm quite new to jQuery so I'm probably missing something obvious, but here's what I've got and it doesn't, work, they divs just stay hidden. Any help would be greatly appreci

[jQuery] Hide parent where a child contains....

2009-06-11 Thread Jesse
I'm sure that I'm just missing something simple. Basically, I'm trying the hide the "" element if it contains "Promotions" but I can't get it to work. Here is my latest jQuery("fieldset:has('legend':contains:('Promotions'))'").hide(); I've tried several variations of this, including trying t

[jQuery] Hide function problem in IE8

2009-05-11 Thread ciupaz
Hi all, I have this jQuery snippet to hide a "DIV" block when the user select one value of a radio button:

[jQuery] hide labels in Form Validation

2009-05-01 Thread Jared
Hello All, I'm using the jQuery form validation and want to do three things with the errors: 1.) Make the border of inputs, option menus, radio buttons, etc. red 2.) Remove the Label error messages from the side of the inputs as they DESTROY my style arrangement 3.) Have a single one-line messag

[jQuery] .hide and .show in FireFox vs IE6

2009-04-28 Thread tahooft
For me one of the best things about jQuery is that I don't have to worry about browser compatiblity. I wrote some code to extend an excisting jQuery application (Galleria) and only tested it in FireFox. I split a long list with thumbs in several blocks: deel0, deel1, deel2 ... etc. After that I h

[jQuery] hide parent div according to span containing some text

2009-04-04 Thread marprus
I have html generated by php (several html codes like below): Previous |Image 1 of 1 | Next What i need to do is to hide "header" div if span class "total" contains number 1. (like it is in above example) I tried code something

[jQuery] Hide li elements if total ul height > container height

2009-04-03 Thread Sero
Hi guys, What I'm trying to do is hide list elements if their combined height is greater than my container div. I've got a start, but it's not perfect. My current script hides the last-child if their combined height > 406px, but there's still the possibility that it should hide more than the la

[jQuery] Hide problem

2009-03-29 Thread LaUr3nTiU
//This might be a double post, I'm not sure... I've already posted this message about 10 minutes ago and it didn't show up yet... so... dunno Hello. I have a div with the id 'menu', inside it i have a ul, and in that i've inserted 7 li tags, each with display: inline. In each li I have a link. /

[jQuery] Hide all elements after an element

2009-03-29 Thread iceangel89
I am a something like cascading drop down, except i am dealing with not only drop downs. - user must select 1st drop down, then 2nd drop down displays - when user selects 2nd drop down, 3rd drop down displays ... but when user changes the selection of 1st drop down, it will update the 2nd drop d

[jQuery] Hide/Show content in a div based on selected radiobutton

2009-03-23 Thread expresso
I'm very new to using jQuery ouside of basic form validation. I've got a radiobutton on my page (it's in an .aspx and is a .net control that will most likely have a class I can grab from jQuery is probably the route I'll go with this). When the radiobuttonlist is selected, I need to show conten

[jQuery] Hide/Show glossary page require for website using jQuery

2009-03-06 Thread JP
Hi There I am trying to implement a glossary page (A-Z) for a website. Basically when I user clicks a letter e.g A all the glossary terms listed under A will appear below and all other glossary terms will be hidden. I have a very simple working version below, but at the moment I am having to mana

[jQuery] hide/show function in jquery

2009-03-04 Thread Eddie
Hello, i have a jquery page all set out as a static ajax comments page, what i want to do is edit it by adding a hide/ show button - like the one here: http://www.funnyjunk.com/funny_pictures/1847/Hairy+Bra/ Does anyone know the foreach statement of adding this? I can send over the file if any

[jQuery] hide/show answer based on question click

2009-02-19 Thread Brian Yanosik
I am very new to jquery and just can't wrap my head around this. It is probably something very basic and I apologize in advance. I have a list of questions and answers, the answers showing when a question is clicked the answer with hide/show and the parent div will change class. I have come up wi

[jQuery] Hide/Show when Check Box is selected

2009-02-18 Thread shapper
Hello, On a form how can I Show a fieldset when a checkbox is Selected and Hide the same fieldset when the same checkbox is unselected? Thanks, Miguel

[jQuery] .hide() and .show(), will change the layout of my page...

2009-02-17 Thread GrootBaas
Hi jQuery, Could somebody please shed some light on this issue for me? .hide() and .show(), will change the layout of my page because when I .show() the elements, an element is created in a place where there was none.. I am no expert, but I think .show() change the CSS style from "display:none"

[jQuery] hide()

2009-02-08 Thread WebAppDeveloper
Hi, If I have an html table with 3 rows each with the same id, for example, id="trContactInfo", as in the html code below. Using jQuery, if I want to hide these 3 rows with the same id, i would do something like $("tr#trContactInfo").hide().next().hide().next().hide. My question is: Instead of r

[jQuery] Hide or show div depending on the value of radio button

2009-02-02 Thread StanW
I am trying to understand show/hide toggled from the value of a selected radio button. I know this topic has been addressed here often, but I cannot seem to apply other's answers. I have a series of primary radio button groups. Each primary group has a single associated secondary group. I want t

[jQuery] hide column problem

2009-01-29 Thread varun
Hi I just wanted to ask if its possible to hide the entire column in tablesorter plugin or may be by selecting column... I know how to select rows or even cells but how will i hide column : like ('thead tr td') suppose i want to hide column 1,2,7,8 in out of 10 rows ? Is it possible? Thanks Va

[jQuery] Hide specific characters

2009-01-22 Thread Wacko Jacko
Hi There, I am using a CMS product that does not enable me to hide cart totals from their cart summary. I need to do this for this particular client. Here a snippet of code for the rendered page: 2 item(s), Total: $0.00 View Cart I would like to hide (or remove) from the exact following sectio

[jQuery] Hide content until loaded

2009-01-16 Thread Christine Masters
Hi everyone! I'm a jQuery newbie, so I apologize if this is an easy question! I'm building a template for newspaper sites, and by nature of having many ads and modules and so forth, the content loads before the jQuery that styles it, leading to a flash of unstyled content. So, on several of my

[jQuery] .hide() and .height()

2009-01-16 Thread jquertil
I noticed today after much fiddling that .hide() causes the parent element to loose its height(). In other words, height() won't work on elements that have display:none -- causing me to use .hide() only AFTER I've done my .height() - based calculations. I suppose that makes sense but I somehow n

[jQuery] Hide / show password field with focus

2009-01-06 Thread rob303
Hi, I've put together a couple of small functions to handle the removal / restore of the default text inside some text inputs. One of these inputs is a password field. I'm showing the user a standard text field containing the text 'Password'. When the user clicks in the box the standard text f

[jQuery] Hide("slow") bug

2008-12-08 Thread Nelsen Lim
http://www.dannyandvivien.com/JQueryHideSlowBug.htm Can some analyze this for me please using IE7, the text changes after hide and show Best regards, Nelsen

[jQuery] hide("slow") and show("slow")

2008-12-08 Thread Nelsen Lim
Hi there is a problem with hide and show in jquery 1.2.6. It works ok but the effect is it makes the font changes. Below i upload a link for your review. You can compare between the text above and below http://www.dannyandvivien.com/JQueryHideSlowBug.htm Can anyone help me. The problem only occ

[jQuery] Hide a div on blur

2008-12-05 Thread Echilon
I have a div which is shown when a AJAX callback is executed, but I can't get it to hide again. I'm using some of the code from the autocompleter and the div contains a . The code I have is at http://pastebin.com/m4b7bf13c . I've left out everything but the relevant parts. I thought I understood h

[jQuery] Hide a div onblur

2008-12-05 Thread Echilon
I have a div which is shown when a AJAX callback is executed, but I can't get it to hide again. I'm using some of the code from the autocompleter and the div contains a . The code I have is at http://pastebin.com/m4b7bf13c . I've left out everything but the relevant parts. I thought I understood h

[jQuery] Hide/Show in IE 6

2008-11-05 Thread OutOfTouch
Will this work in IE 6? $('#listings').show(); I can't remember for sure but I thought that didn't work in IE 6. Thanks!

[jQuery] hide() not working when disabling CSS

2008-10-27 Thread 5h4rk
Hi, I have Please turn Javascript on to view the content. and $('p.jsoff').hide(); When I turn CSS off using the Web Developer Extension for Firefox and Javascript on, the message is somehow not hidden. I'm not sure if this is the problem, but Instead of style="display:none;", webdeveloper- i

[jQuery] Re: Jquery hide and fadeout are not the same

2008-10-19 Thread Dave Methvin
> While Hide not only hides the img element it also hides the li element. Do you have a page that demonstrates the problem?

[jQuery] Jquery hide and fadeout are not the same

2008-10-18 Thread GTakacs1976
only the img element but I want the hiding to be instant, not a fade. -- View this message in context: http://www.nabble.com/Jquery-hide-and-fadeout-are-not-the-same-tp20043754s27240p20043754.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] .hide() problem in ie6 - ie7

2008-09-04 Thread Roland
hi all. i have a problem with jquery hide function in internet explorer. the animation itself works fine but in ie after the animation the div jump down again just for less the 1 second. has someone an idea to solve the problem. thanx roland

[jQuery] Hide a drop down menu.

2008-08-19 Thread alex.cheshev
Hello. I have a page. The page contains a link. When a user clicks the link a drop-down menu showes. I want to hide the drop down menu when the user clickes wherever else on the page. It has to work like . The drop down menu is . So I can not use blur event. PS It has to work the same as Gmail->Co

[jQuery] Hide DOM when clicking outside it? (Newbie Question)

2008-07-17 Thread Doover
I have a simple menu which are shown when you click on a link. Is it possible to hide the menu when I click outside it? Any help are appreciated. Thanks.

[jQuery] .hide() Doesn't Work Fast Enough?

2008-07-07 Thread Vik
I'm using jQuery to fade in my site logo on my home page header, to give the home page some animation. It works great. So that the page will degrade gracefully if the user doesn't have Javascript, the HTML has the complete logo already visible. That's what users without Javascript see. If the u

[jQuery] hide() and slideDown() question

2008-06-26 Thread Matt
Hi All, Essentially what I'm trying to do is insert some new html after a specific element. What I would like to do is have the new element appear using the slideDown() function. I tried to hide it at first so all the user sees is the slideDown() but it brielfy shows the element, then hides it, th

[jQuery] Hide all except one (like tabs)

2008-06-03 Thread dbroadley
This is the first time I have tried to use Jquery, and I have copied the above demo onto my computer and tried to set it up to work out how to use it. It is supposed to hide all divs except one the same as a tab. The demo can be found at the bottom of the FAQs section of Jquery in the cook book.

[jQuery] Hide/Close div when clicked outside of it.

2008-04-30 Thread Aleksandr
Hi All, I am showing a div on click of a hyperlink. Now, when i click elsewhere in the document other than the div itself, then i want to hide the showing div... Is there any easy way to do this? I've already try: $('html').click(function() { $('#divLoginBox1').hide(); }); and $('body').click

[jQuery] Hide / Show a panel in an acordion

2008-04-19 Thread Beau
Hi Everyone, I have been searching through the archive for the past two hours and also had a chat with everyone's good friend - Mr.Google. I have also been checking out just about every accordion plug-in home page / demos - but haven't found what I am looking for, thus my email here. Anyway - w

[jQuery] hide() and floating elements leaves white space

2008-04-03 Thread Richard Weeks
Tsk, I should also answer the question fully. The affected content is: Link Richard -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of GianCarlo Mingati Sent: 03 April 2008 14:02 To: jQuery (English) Subject: [jQuery] Re: hide() and floating eleme

[jQuery] hide() and floating elements leaves white space

2008-04-02 Thread Richard Weeks
This is killing me! Due to the rule of supply and demand, I'm sure there must be a workaround as there are so many people in forums searching for the same grail... Picture a list: A B C D E F G H I The list items are floating left, using CSS, on a fixed width to simulate 3 columns. If I call .

[jQuery] Hide / Show problems with IE

2008-02-13 Thread igb
Hello, I am trying to use the show/hide jquery function to show and hide book descriptions by clicking on the name of the book. It seems that the script works OK in firefox but not at all in IE. (In IE the descriptions are hidden and won't show) For example, http://squarehedge.com/bastianbooks/

[jQuery] hide/show (trying to prevent inline loop code)

2007-11-19 Thread FrankTudor
Hi all, I an trying to create a simple hide/show toggle with jQuery, but My content loops over a query and so when I test it it opens all my table blocks (since they have Identical code duplicated to the length of the records). So then I got cleaver and created a variable that generates a random

[jQuery] hide() question

2007-09-21 Thread HubGoblin
Please can you tell me how to achieve that: I want to have element that is hidden initially and I want to display it with fade effect when the page loads. If I create a div with display: none, or visibility: hidden i don't get any results. Please help.

[jQuery] hide table rows when we type in text box

2007-08-19 Thread Potluri
Hi everyone, Thanks for everyone who responded for my previous queries. Here is an assignment which I feel challenging for our for our jquery guys. for table with 500 rows. I don't want to use any plugin for this. Well the task is when we type some thing in a text box it has to show only thos

[jQuery] hide some divs, show one

2007-08-17 Thread [EMAIL PROTECTED]
hi friends, I have a product list... when the user click on a product i wanna show the respectly div for this product..(photo) and hide all the one that are visible.(for the case the user forget to close them) how can i do it ?

[jQuery] hide() not hiding

2007-06-15 Thread gardsted
Hello, I am an absolute jquery newbie since yesterday evening. I couldn't make some stuff go away. I struggled for some time with this (later saw in the manual, that hide() only applies to stuff that is visible). So just in case anybody else is a newbie and struggles with the same as me, here is

[jQuery] JQuery hide/show bug in Safari

2007-06-04 Thread jdl
hi all. im having a few problems with a safari bug with a jquery hide/show div.. please click on the core-approach section here. http://www.fifthcorner.co.uk/build/fraser/index.php?s=about it loads correctly but when you click hide, then show, the div reappears, then jumps to the top left

[jQuery] Hide DIV on page click help

2007-05-15 Thread Jeff
I am trying to add some functionality to my page where a user clicks on a link which makes a menu layer visible. That part I've been able to do. Now, I would like that DIV to disappear when the user clicks anwhere else on that page, on other words, making the menu disappear when it loses focus.