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

2010-01-17 Thread Nathan Klatt
On Sun, Jan 17, 2010 at 6:17 AM, Reinhard Vornholt wrote: > After switching to jQuery 1.4 everything works fine. > My guess is, that it had something to do with the css of my . It > had a position:fixed attribute. But thats just a guess. Glad you got it figured out but it wasn't the position:fixe

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

2010-01-17 Thread Reinhard Vornholt
After switching to jQuery 1.4 everything works fine. My guess is, that it had something to do with the css of my . It had a position:fixed attribute. But thats just a guess. On 14 Jan., 23:08, Reinhard Vornholt wrote: > Hello group, > > ich am fairly new to jQuery and using it with my wicket appl

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

2009-12-08 Thread Toolman
This example hides but doesn't unhide in iE6 for me. On Dec 3, 5:00 am, Leonardo K wrote: > I tested here and worked: > > http://jsbin.com/ivude > > On Wed, Dec 2, 2009 at 13:32, mickey wrote: > > Anyone?

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

2009-12-02 Thread Leonardo K
I tested here and worked: http://jsbin.com/ivude On Wed, Dec 2, 2009 at 13:32, mickey wrote: > Anyone? >

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

2009-12-02 Thread mickey
Anyone?

[jQuery] Re: Hide chat content

2009-11-30 Thread Scott Sauyet
On Nov 30, 11:00 am, Jerry Johnson wrote: > Ya, here is my problem. I know how to make the ajax call, and it all works, > but, I need to somehow connect the msg id from the mysql database to the > ajax call, so I need another div, that has the id. There are many ways to do this. One simple one i

Re: [jQuery] Re: Hide chat content

2009-11-30 Thread Jerry Johnson
Ya, here is my problem. I know how to make the ajax call, and it all works, but, I need to somehow connect the msg id from the mysql database to the ajax call, so I need another div, that has the id.

[jQuery] Re: Hide chat content

2009-11-30 Thread Scott Sauyet
On Nov 29, 3:26 pm, Jerry Johnson wrote: > ok, that worked, but now I need to make an ajax call... So go ahead and make one. :-) Or were you looking for more specific help? -- Scott

Re: [jQuery] Re: Hide chat content

2009-11-29 Thread Jerry Johnson
ok, that worked, but now I need to make an ajax call... On Sat, Nov 28, 2009 at 11:54 PM, Charlie wrote: > Now instead of multiple Id's all the same you have numeric ID's. > ID's can't start with numbers. Adding onclick to your markup is moving > backwards with jQuery. > Currently your hide fun

Re: [jQuery] Re: Hide chat content

2009-11-28 Thread Charlie
Now instead of multiple Id's all the same you have numeric ID's.  ID's can't start with numbers. Adding onclick to your markup is moving backwards with jQuery. Currently your hide function is not available in the DOM for onclick's as it is closed within jQuery and therefore is not a global func

[jQuery] Re: Hide chat content

2009-11-28 Thread Jerry Johnson
bump

Re: [jQuery] Re: Hide chat content

2009-11-28 Thread Jerry Johnson
I have done so, but it still doesn't work

Re: [jQuery] Re: Hide chat content

2009-11-27 Thread Charlie
ID's must be unique, you use ID='hide" over and over, can't do it try changing to class="hide" and corresponding jQuery adjust Jerry Johnson wrote: On Fri, Nov 27, 2009 at 1:47 PM, Scott Sauyet wrote: On Nov 27, 12:03 pm, Jerry Johnson

Re: [jQuery] Re: Hide chat content

2009-11-27 Thread Jerry Johnson
On Fri, Nov 27, 2009 at 1:47 PM, Scott Sauyet wrote: > On Nov 27, 12:03 pm, Jerry Johnson wrote: > > $('a.#hide').click(function() > > { > > $(this).hide(); > > } > > ); > > What does "a.#hide" mean? Shouldn't that just be "a#hide", or better > yet, "#hide"? > > >

[jQuery] Re: Hide chat content

2009-11-27 Thread Scott Sauyet
On Nov 27, 12:03 pm, Jerry Johnson wrote: > $('a.#hide').click(function() >         { >                 $(this).hide(); >         } > ); What does "a.#hide" mean? Shouldn't that just be "a#hide", or better yet, "#hide"? > > > (2:34:28) Jerry: > bkgi What is a table row doing directly inside

[jQuery] Re: Hide chat content

2009-11-27 Thread Jerry Johnson
I have verified that it is not the ajax call.

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

2009-11-11 Thread Joe Moore
Oops! Thanks for the catch! The other thing to understand is that this wont work for browsers that have JavaScript disabled. On Nov 11, 2009 9:16 AM, "MorningZ" wrote: > Oops. got the selector wrong. It should be: > $( function() { > $(div[class^=hide-BAT].hide(); ... You still didn't get it rig

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

2009-11-11 Thread David pr
Thank you all i've (you guys) crack it.

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

2009-11-11 Thread MorningZ
> Oops. got the selector wrong. It should be: > $( function() { > $(div[class^=hide-BAT].hide(); > }); > Joe You still didn't get it right :-) $("div[class^=Hide-BAT]").hide(); To original poster: if you want "fast", then you can't beat CSS with jQuery's hide method have like: . a

[jQuery] Re: hide browser toolbars using jQuery

2009-10-21 Thread James
Not possible. On Oct 21, 9:02 am, Subtle wrote: > 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

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

2009-10-12 Thread Tan
Thanks Brian. It's very work. On Oct 11, 10:55 pm, brian wrote: > On Sat, Oct 10, 2009 at 1:45 PM, Tan wrote: > > > Hello, > > > >   > >   > name="sitewide" id="edit-sitewide" value="1"   class="form-checkbox" / > >> site wide > > > > > > > > > >   > >  Choosen get termwide: > >   >>No cho

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

2009-10-11 Thread brian
On Sat, Oct 10, 2009 at 1:45 PM, Tan wrote: > > Hello, > >   >   name="sitewide" id="edit-sitewide" value="1"   class="form-checkbox" / >> site wide > > > > > >   >  Choosen get termwide: >  >No choosen value="256">Term1Term2 > > > I have code jquery when i choosen select options value > 0

[jQuery] Re: Hide/Show if logged in

2009-10-09 Thread Painstik
No it is not a trick question, I am new with jquery. I decided to do it on server side, thanks for help.

[jQuery] Re: Hide/Show if logged in

2009-10-08 Thread James
I'm not sure if this is a trick question or not... // if logging out $("#LoggedIn").hide(); $("#LoggedOut").show(); On Oct 8, 4:19 pm, Painstik wrote: > Hi everyone, I can't get this out, i searched everywhere and didn't > find solution... > > > >     method="post" id="signin" on

[jQuery] Re: Hide row if empty

2009-10-08 Thread Charlie Griefer
On Thu, Oct 8, 2009 at 5:10 PM, Wacko Jacko wrote: > > Hi There. Yeah, just did. Thanks for that! > > Why does my test using the same code not work :( > > http://www.noosabiosphere.org.au/tester.htm > Viewing the source, that isn't empty. it's got whitespace characters (spaces and/or tabs

[jQuery] Re: Hide row if empty

2009-10-08 Thread Wacko Jacko
Hi There. Yeah, just did. Thanks for that! Why does my test using the same code not work :( http://www.noosabiosphere.org.au/tester.htm On Oct 9, 8:46 am, Charlie wrote: > did you look at the working example on jsbin where the li is being hidden? > Wacko Jacko wrote:Thanks Bohdan. Tried th

[jQuery] Re: Hide row if empty

2009-10-08 Thread Charlie
did you look at the working example on jsbin where the li is being hidden? Wacko Jacko wrote: Thanks Bohdan. Tried that first. No luck. As I said, it will work if the parent is a div, but not if the parent of the div is an li. Thanks again. Jack On Oct 8, 5:56 pm, Bohdan Ganicky wrote:

[jQuery] Re: Hide row if empty

2009-10-08 Thread Wacko Jacko
Thanks Bohdan. Tried that first. No luck. As I said, it will work if the parent is a div, but not if the parent of the div is an li. Thanks again. Jack On Oct 8, 5:56 pm, Bohdan Ganicky wrote: > Hi, > > use .parent() instead of .parents() > > http://jsbin.com/isasi/ > > -- > Bohdan > > On Oct 8

[jQuery] Re: Hide row if empty

2009-10-08 Thread Bohdan Ganicky
Hi, use .parent() instead of .parents() http://jsbin.com/isasi/ -- Bohdan On Oct 8, 6:17 am, Wacko Jacko wrote: > I am having a bit of trouble with this one. Thanks for your help. I > could get it working if the parent is a but not if it's an . > > Here's my html: > > >         >         W

[jQuery] Re: Hide row if empty

2009-10-07 Thread Wacko Jacko
I am having a bit of trouble with this one. Thanks for your help. I could get it working if the parent is a but not if it's an . Here's my html: Why I am involved: {tag_why are you involved?} Current projects & activities: {tag_current pro

[jQuery] Re: Hide row if empty

2009-09-30 Thread Wacko Jacko
Brilliant! I will try this and get back to you.Thanks for your time! On Oct 1, 3:21 pm, Charlie Griefer wrote: > Assuming you can turn those id's into classes (where you have > id="database")... you can do the following: > > $(document).ready(function(){ >     $('ul .database').each(function() {

[jQuery] Re: Hide row if empty

2009-09-30 Thread Wacko Jacko
Hi Charlie, Thanks for your reply. I am using Business Catalyst (SaaS, hosted solution) so I can't do the php / ASP thang. I was using those id's only for reference purposes in this thread. Thanks. On Oct 1, 3:14 pm, Charlie Griefer wrote: > If you're working with server side data like that,

[jQuery] Re: Hide row if empty

2009-09-30 Thread Charlie Griefer
Assuming you can turn those id's into classes (where you have id="database")... you can do the following: $(document).ready(function(){ $('ul .database').each(function() { if ($(this).text() == "") { $(this).parent().hide(); } }); }); On Wed, Sep 30, 2009 at 10

[jQuery] Re: Hide row if empty

2009-09-30 Thread Charlie Griefer
If you're working with server side data like that, couldn't you just write a conditional in whatever language you're using (PHP, CF, ASP, etc) to not display the if no data? Also, do you really mean to re-use "database" as an ID for multiple elements? ID's ought to be unique. On Wed, Sep 30, 20

[jQuery] Re: Hide/Show based on radio button selected

2009-09-15 Thread bjorsq
Hi, In the following example, all the radio controls have the name attribute set to "myradio", and the "#offices_checkboxes" part of the document is shown when the radio with id 'radioOne' is checked. Your example probably didn't work because of the syntax you used in your attribute selector (no

[jQuery] Re: Hide/Show based on radio button selected

2009-09-14 Thread Rick Faircloth
Just off the top of my head, but may work... $(document).ready(function() { $('#offices_checkboxes').hide(); $('input:radio[name=radioName]:checked').click(function() { $('#offices_checkboxes').show(); }); $('input:radio[name=radioName]:not(:checked)'.click(functi

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

2009-08-31 Thread nick.rathert
James and Charlie, your suggested changes worked like a charm. thanks for the help. it's much appreciated. - nick On Aug 28, 8:18 pm, Charlie wrote: > ID's must be unique, you need to use class for multiple instances > nick.rathert wrote:hi all, i'm having an interesting IE6 and IE7 issue t

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

2009-08-28 Thread Charlie
ID's must be unique, you need to use class for multiple instances nick.rathert wrote: 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,

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

2009-08-28 Thread James
You cannot have more than one id="collapse" on the document at one time. IDs are suppose to be unique. You can use a CLASS instead. Change your HTML to: and your selector to: $("ul.collapse").hide(); On Aug 28, 8:11 am, "nick.rathert" wrote: > hi all, > > i'm having an interesting IE6 and IE7

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

2009-08-20 Thread Kevin
Is the layout broken initially or only after you hide/show the content? When you inspect the DIVs in Firebug, do they still have their float properties assigned? Are you specifying a width on the boxes? Posting example code always helps other developers troubleshoot your issues faster =) On Aug 2

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

2009-08-20 Thread Mauricio (Maujor) Samy Silva
When you remove a floated element from the flow of a document its position is occupied by the next float and this causes the ruin! To preserve the space leaving by a removed div how about use: css('visibility', 'hidden'); istead of show() Maurício -Mensagem Original- De: simusch P

[jQuery] Re: Hide function in IE

2009-08-18 Thread Liam Potter
I'm not 100% sure, but the "fix" they used, seems to me to just be loading the png's into the "alpha image loader" natively, which is pretty damn poor if I'm correct. Jonathan Vanherpe (T & T NV) wrote: That sucks, I didn't know that. I was under the impression that they had fixed IE's png

[jQuery] Re: Hide function in IE

2009-08-18 Thread Jonathan Vanherpe (T & T NV)
That sucks, I didn't know that. I was under the impression that they had fixed IE's png support with IE7, but I guess it shouldn't surprise me their 'fix' is buggy. Jonathan Liam Potter wrote: Nope, all versions of IE cannot animate the opacity of a PNG without the "black artifact", regar

[jQuery] Re: Hide function in IE

2009-08-18 Thread Liam Potter
Nope, all versions of IE cannot animate the opacity of a PNG without the "black artifact", regardless of any hacks that are applied. It's really quite annoying. Jonathan Vanherpe (T & T NV) wrote: By IE, I think he means IE6. I haven't tested this, but I think IE7 and up can do this fine,

[jQuery] Re: Hide function in IE

2009-08-18 Thread Jonathan Vanherpe (T & T NV)
By IE, I think he means IE6. I haven't tested this, but I think IE7 and up can do this fine, as long as you make sure you're applying any png hacks you're using to IE6 only with conditional comments. I could be wrong on this, though. Jonathan pmni wrote: Thank you for the explain. On 18 A

[jQuery] Re: Hide function in IE

2009-08-18 Thread pmni
Thank you for the explain. On 18 Ago, 08:58, Liam Potter wrote: > IE cannot animate the opacity of a png with alpha transparency and there > is no solution to this. > > > > pmni wrote: > > Hi. > > I'm building a website, and use your framework to hide/show a div. > > This work, but in IE when cl

[jQuery] Re: Hide function in IE

2009-08-18 Thread Liam Potter
IE cannot animate the opacity of a png with alpha transparency and there is no solution to this. pmni wrote: 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

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

2009-08-13 Thread msmaeda
- Original Message - >   From: Charlie >   To: jquery-en@googlegroups.com >   Sent: Wednesday, August 05, 2009 6:00 AM >   Subject: [jQuery] Re: hide() does not hide span in IE, but does in FF > >   this is a lot to sift through to find one span hide issue for which there &g

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

2009-08-05 Thread Cesar Sanz
I will suggest you, that instead of pasting all your code (which ALMOST nobody reads) you put a demo in http://www.jsbin.com - Original Message - From: Charlie To: jquery-en@googlegroups.com Sent: Wednesday, August 05, 2009 6:00 AM Subject: [jQuery] Re: hide() does not hide

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

2009-08-05 Thread Charlie
this is a lot to sift through to find one span hide issue for which there is likely an easy solution. You'll get a  lot better response by putting a test case on live link. jsbin.com is great for this if you don't have public access server msmaeda wrote: Hi, With the code below, I am hav

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

2009-08-04 Thread rupak mandal
hi, if you use div instead of span I think it will work. On Tue, Aug 4, 2009 at 8:25 PM, msmaeda wrote: > > 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 "

[jQuery] Re: .hide function confusion

2009-06-28 Thread Hokumae
Thanks Charlie, you were bang on. I replaced earlier in the php document with