[jQuery] Passing value from function

2010-02-18 Thread Charlie22
Hi all, I have trouble passing value as selector value to other function. $(document).ready(function(){ var id = 'Test'; $('#Name').keyup(function(){ id = '#Mobil'; }); $(id).click(function(){ console.log(id); }); }); I am getting o

[jQuery] Re: AJAX External content doesnt work properly

2009-01-24 Thread Charlie22
that LiveQuery doesn't. > > Check it out and give it a try. > > Rick > > > > > -Original Message- > > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Of Charlie22 > > Sent: Saturday, January 24, 2009 12:43 PM

[jQuery] Re: remove()

2009-01-24 Thread Charlie22
e- > > > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > > Behalf Of brian > > > Sent: Saturday, January 24, 2009 12:19 PM > > > To: jquery-en@googlegroups.com > > > Subject: [jQuery] Re: remove() > > >

[jQuery] Re: AJAX External content doesnt work properly

2009-01-24 Thread Charlie22
st places new HTML in your DOM? (in the page?) > > Rick > > > > > -Original Message- > > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Of Charlie22 > > Sent: Saturday, January 24, 2009 12:19 PM > > To: jQuery

[jQuery] Re: remove()

2009-01-24 Thread Charlie22
f the div. > > > > On Sat, Jan 24, 2009 at 12:05 PM, Charlie22 wrote: > > > Thx, but I need leave DIV tag on the place..I thought $ > > ('#test>*').remove(), but no success. > > > On 24 Led, 17:54, brian wrote: > >> $('#test').text(&

[jQuery] AJAX External content doesnt work properly

2009-01-24 Thread Charlie22
Hi all, I have problem with page, where I am loading external page into DIV. This page is working, but after AJAX upload anchors doesnt work.Scripts are in source code of pages htt://83.240.47.84/skyrace22/pilots.php //working page htt://83.240.47.84/skyrace22/test.php //problem after loadi

[jQuery] Re: remove()

2009-01-24 Thread Charlie22
Thx, but I need leave DIV tag on the place..I thought $ ('#test>*').remove(), but no success. On 24 Led, 17:54, brian wrote: > $('#test').text('') or $('#test').html('') might be what you want. > > > > On Sat, Jan 24, 2009

[jQuery] remove()

2009-01-24 Thread Charlie22
I have question how easy remove content from DIV, e.g. test text I thought that code $('#test').remove() managed it, but it doesnt true. Thx in advance.

[jQuery] Re: AJAX data in IE

2009-01-24 Thread Charlie22
h) > > Subject: [jQuery] Re: AJAX data in IE > > > When I click any of the links I get jQuery undefined script error line > > 119 in IE > > > On Jan 24, 8:20 am, Charlie22 wrote: > > > sry it didnt work, because console.log there.. > > > > On 24

[jQuery] Re: AJAX data in IE

2009-01-24 Thread Charlie22
//lodin pilots.php to DIV On 24 Led, 14:59, jay wrote: > When I click any of the links I get jQuery undefined script error line > 119 in IE > > On Jan 24, 8:20 am, Charlie22 wrote: > > > > > sry it didnt work, because console.log there.. > > > On 24 Led, 14:1

[jQuery] Re: AJAX data in IE

2009-01-24 Thread Charlie22
sry it didnt work, because console.log there.. On 24 Led, 14:12, Charlie22 wrote: > thx for tip, but no success. Try to check this > page..http://83.240.47.84/skyrace22/pilots.php > works everywhere, only IE failed.. > > On 24 Led, 13:38, Mike Alsup wrote: > &g

[jQuery] Re: AJAX data in IE

2009-01-24 Thread Charlie22
thx for tip, but no success. Try to check this page.. http://83.240.47.84/skyrace22/pilots.php works everywhere, only IE failed.. On 24 Led, 13:38, Mike Alsup wrote: > > $(function(){ > >         $('.tablesorter').tablesorter({widgets: ['zebra']}); > >         $('#subMenu a').click(function(){ >

[jQuery] AJAX data in IE

2009-01-24 Thread Charlie22
hi crew, as ususally I have strange problem..take a look to code: $(function(){ $('.tablesorter').tablesorter({widgets: ['zebra']}); $('#subMenu a').click(function(){ var trida = $(this).attr('href'); console.log(trida); $('#content>*').remove();

[jQuery] Re: How show childern in sequence

2009-01-21 Thread Charlie22
btw, isnt possible use $.each ?? On 21 Led, 15:52, Charlie22 wrote: > well, thx for nice explanation! Cya later. > > On 21 Led, 15:33, > > > > Liam Potter wrote: > > The animate function is there to create a pause at the start of each > > fadeIn, otherwise all

[jQuery] Re: How show childern in sequence

2009-01-21 Thread Charlie22
, function(){ >         $("#div2id).show(1500, function(){ >                 $("#div3id).show(1500)}; >         )}; > )}; > > use the for loop if the amount of divs will change. > > > > Charlie22 wrote: > > Thank you very muhc, is there no way how use show() functi

[jQuery] Re: How show childern in sequence

2009-01-21 Thread Charlie22
0), function () { > >                             $(this).fadeIn(3000); > >                             }) > > } > > There is definitely a better way to do this, but this is what I came up > when I needed something similar. > > > > Charlie22 wrote: > > Hi all, > > I need a litlle help with this pro

[jQuery] How show childern in sequence

2009-01-21 Thread Charlie22
Hi all, I need a litlle help with this problem. I have 3 DIVs inside Parent DIV and I need show this childern's DIVs in sequence. Firstly first, than next etc. Is there anz function, because code below shows all DIVs parallery. Thx for input.

[jQuery] Re: Content loading with AJAX is lost in IE after click

2009-01-20 Thread Charlie22
tle demo of this method: > > Try this URL and click on "General":http://jsbin.com/uvuji, > then have a look at the code source and see if it might > be useful. > > Rick > > > > > -Original Message- > > From: jquery-en@googlegroups.com [mailto:j

[jQuery] Re: Content loading with AJAX is lost in IE after click

2009-01-20 Thread Charlie22
On 20 Led, 22:49, Charlie22 wrote: > hm, if I set directly $(#pilots). show(); it works, but if there is > varibale $('#'+anyVariable).show(); IE is loosing value of this > variable after click, thats all problem. But how can I solve it? > > On 20 Led, 20:06, "Rick Faircloth&qu

[jQuery] Re: Content loading with AJAX is lost in IE after click

2009-01-20 Thread Charlie22
you're using an AJAX call to > replace your original content, be sure and do this after > the AJAX call is complete. > > Rick > > > > > -Original Message- > > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Of Charl

[jQuery] Re: Content loading with AJAX is lost in IE after click

2009-01-20 Thread Charlie22
isplay attr to display:none and > prevent that and you should be good-to-go... > > Rick > > > > > -Original Message- > > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Of Charlie22 > > Sent: Tuesday, January 20, 2009 10:

[jQuery] Content loading with AJAX is lost in IE after click

2009-01-20 Thread Charlie22
Hi all, can you check pls, what I am doing wrong in these scripts. Check pls menu "Rules" and its submenu functions. In FF3 and GCh its works fine, but in IE it lost part of ajax content. address: http://83.240.47.84/skyrace2/ Thank you for your help in advance.

[jQuery] Re: jquery.com and IE7

2009-01-18 Thread Charlie22
I found smtg strange. I tried to log to my PC under other account and with new user account IE7 works with jQuery.com fine. It seems there must smtg wrong with my account profile in WinXP, so definitelly its not problem by jQuery.com. On 18 Led, 10:38, Charlie22 wrote: > I have one question

[jQuery] Re: How select first link??

2009-01-18 Thread Charlie22
umber) is the position in the array of the selector. Hence 0 being first > > hope this helps > > On 1/18/09, Charlie22 wrote: > > > > > > > and how can you create selector for first link in this case?: > > > > >   > >      Home > >      R

[jQuery] Re: How select first link??

2009-01-18 Thread Charlie22
17, 2009, at 3:39 PM, Nic Luciano wrote: > > > > > > > That's true, but that's exactly how it's supposed to function. > > > > > > > On Sat, Jan 17, 2009 at 3:35 PM, jQuery Lover > > > > > > wrote: > > > > >

[jQuery] Re: jquery.com and IE7

2009-01-18 Thread Charlie22
I have one question yet. Is possible use jquery.com design for Czech fan site or is there any terms of use? On Jan 18, 9:20 am, Charlie22 wrote: > just only notice, that before jQuery 1.3 realese it works fine also in > my IE7 > > On Jan 18, 9:16 am, Charlie22 wrote: > >

[jQuery] Re: jquery.com and IE7

2009-01-18 Thread Charlie22
just only notice, that before jQuery 1.3 realese it works fine also in my IE7 On Jan 18, 9:16 am, Charlie22 wrote: > Hi Karl, thx for answer. I am using IE7 - Czech language version - all > patch installed. > screenshot:http://83.240.47.84/skyrace2/ie7_jquery.jpg > > On

[jQuery] Re: jquery.com and IE7

2009-01-18 Thread Charlie22
gt; > Thanks, > > --Karl > > > Karl Swedbergwww.englishrules.comwww.learningjquery.com > > On Jan 17, 2009, at 6:27 PM, Charlie22 wrote: > > > > > hi all, > > its only me or somebody has problem with jquery.com?? In IE7 I dont > > see after a few seconds white background and pages are unreadable. > > Only main page is working correctly. Thx for info

[jQuery] jquery.com and IE7

2009-01-17 Thread Charlie22
hi all, its only me or somebody has problem with jquery.com?? In IE7 I dont see after a few seconds white background and pages are unreadable. Only main page is working correctly. Thx for info

[jQuery] Re: How select first link??

2009-01-17 Thread Charlie22
        Pilots > > > >               Briefing > > > >               IGC > > > >               Results > > > >               Forum > > > >       > > > > > > > > > $('#menu li:first a').remove()

[jQuery] Re: How select first link??

2009-01-17 Thread Charlie22
Rules > > > >               Pilots > > > >               Briefing > > > >               IGC > > > >               Results > > > >               Forum > > > >       > > > > > > > > > $('#menu li:first a&#x

[jQuery] Re: How select first link??

2009-01-17 Thread Charlie22
              IGC > > >               Results > > >               Forum > > >       > > > > > > > $('#menu li:first a').remove() - will do nothing here, since first li > > > has no anchor in it ! > > > > > > > Read jQ

[jQuery] Re: How select first link??

2009-01-17 Thread Charlie22
        IGC > >               Results > >               Forum > >       > > > > > $('#menu li:first a').remove() - will do nothing here, since first li > > has no anchor in it ! > > > > > Read jQuery HowTo Resource  -  http://jquery

[jQuery] Re: How select first link??

2009-01-17 Thread Charlie22
in twitter it seems he is going to > release jquery 1.3.1 maybe he found some little bugs . > > On Jan 17, 2:37 pm, Charlie22 wrote: > > > > > ok, thx for your help guys, because it made me crazy for a while and > > thx for your bug report jQuery Lover. I am new pretty

[jQuery] Re: How select first link??

2009-01-17 Thread Charlie22
x27;s see what happens :) > > > Read jQuery HowTo Resource  -  http://jquery-howto.blogspot.com > > On Sun, Jan 18, 2009 at 12:32 AM, Charlie22 wrote: > > > so why it doesnt work?? is it jQuery bug? > > > On 17 Led, 20:30, jQuery Lover wrote: > >&

[jQuery] Re: How select first link??

2009-01-17 Thread Charlie22
so why it doesnt work?? is it jQuery bug? On 17 Led, 20:30, jQuery Lover wrote: > It is... > > > Read jQuery HowTo Resource  -  http://jquery-howto.blogspot.com > > On Sun, Jan 18, 2009 at 12:27 AM, Charlie22 wrote: > > > yes, that is what I said..not workin

[jQuery] Re: How select first link??

2009-01-17 Thread Charlie22
d jQuery HowTo Resource  -  http://jquery-howto.blogspot.com > > On Sun, Jan 18, 2009 at 12:18 AM, Charlie22 wrote: > > > hmm, it seems as my stupidity :-) so there is no need use element > > in this case. Originally I had code $('#menu li a:first'), but it > > wo

[jQuery] Re: How select first link??

2009-01-17 Thread Charlie22
only. > > > Cheers- > > Nic > >http://www.twitter.com/nicluciano > > > On Sat, Jan 17, 2009 at 1:56 PM, Charlie22 wrote: > > >> IE7, FF3, GoogleChrome..ok, check this page > >>http://83.240.47.84/skyrace2/del.html > > >> On 17 Led

[jQuery] Re: How select first link??

2009-01-17 Thread Charlie22
#x27;).remove(); > > removes the first anchor in the list. > > > Read jQuery HowTo Resource  -  http://jquery-howt.o.blogspot.com >. > > > On Sat, Jan 17, 2009 at 11:33 PM, Charlie22 wrote: > > > of i add .remove() of course > > > On 17 Led, 19:32, Cha

[jQuery] Re: How select first link??

2009-01-17 Thread Charlie22
of i add .remove() of course On 17 Led, 19:32, Charlie22 wrote: > I tested it, but it remove all "a", so sry, it doesnt work :-( > > On 17 Led, 19:21, jQuery Lover wrote: > > > > > Removing li solves the problem: > > > $('#menu a:first'

[jQuery] Re: How select first link??

2009-01-17 Thread Charlie22
I tested it, but it remove all "a", so sry, it doesnt work :-( On 17 Led, 19:21, jQuery Lover wrote: > Removing li solves the problem: > > $('#menu a:first'); > > > Read jQuery HowTo Resource  -  http://jquery-howto.blogspot.com > > > >

[jQuery] How select first link??

2009-01-17 Thread Charlie22
Hi all, I am playing with jQuery 1.3 and I have provlem with selecting a first link in code below. Can you help me how how it should look like jQuery code and also for case, if Home will not be a link, so "Rules" will be a first link. My traditional way from jQuery 1.2.6 doesnt work now. ('#menu l

[jQuery] Re: jQuery 1.3 selector :first; :first-child

2009-01-17 Thread Charlie22
> > On Sat, Jan 17, 2009 at 6:26 PM, Charlie22 wrote: > > > Hi all, > > I have trouble in jQuery 1.3 with :first; :first-child selector. > > Always it selects all "a". In version 1.2.6 it worked by suspense. > > What is new or wrong?? Thx for help. > > > $(function(){ > >        $('#menu li a:first-child').remove(); > > });

[jQuery] jQuery 1.3 selector :first; :first-child

2009-01-17 Thread Charlie22
Hi all, I have trouble in jQuery 1.3 with :first; :first-child selector. Always it selects all "a". In version 1.2.6 it worked by suspense. What is new or wrong?? Thx for help. $(function(){ $('#menu li a:first-child').remove(); });

[jQuery] jQuery (1.2.6) $.ajax and IE7 problem

2009-01-16 Thread Charlie22
Hi all, I have probelm with these pages http://83.240.47.84/skyrace2 under FF3 menu rules and submenu works fine, but under IE7 it is loosing data. What is wrong there? scripts: Menu: $(function(){ $("ul#menu li a:first").addClass('active'); $("ul#menu li a").click(function(){

[jQuery] jQuery (1.2.6) and IE7 problem

2009-01-16 Thread Charlie22
Hi all, I have problem with these pages, check menu "Rules" and then submenu for rules. Under FF3 it works OK, but under IE7 it lost data from cache or what. Deos can somobody help me. Thx in advance. jQuery codes Menu: $(function(){ $("ul#menu li a:first").addClass('active'); $("ul#