[jQuery] Re: All is well except in IE - links initially not clickable

2009-02-07 Thread precar
Thank you so much Stephan! It seems to work fine now. Precar. On Feb 6, 3:16 pm, Stephan Veigl wrote: > Hi, > > looks like you are running into racing-conditions. > Why are you creating your list elements and bind the click event > handler in two different and ASYNCHR

[jQuery] Re: All is well except in IE - links initially not clickable

2009-02-06 Thread precar
gt; This probably won't help much, but personally I think it's a good > habit to put semi-colon (;) at the end of your lines in your JS code. > It will help reduce possible errors. > > On Feb 6, 8:33 am, precar wrote: > > > > > I've tried using Firebug for debuggi

[jQuery] Re: All is well except in IE - links initially not clickable

2009-02-06 Thread precar
I've tried using Firebug for debugging but since there's nothing technically wrong in the script, I can't get much out of it. Is there a way to use Firebug for debugging something that's not broken but isn't functioning like you want it to? On Feb 6, 11:27 am, pre

[jQuery] Re: All is well except in IE - links initially not clickable

2009-02-06 Thread precar
Could I get some help on this please? Thank you, Precar. On Jan 30, 8:52 am, precar wrote: > Hi, > > Yes, I'm using the bind() method with 'click'.  Is that the correct > approach? > > Precar. > > On Jan 28, 9:47 am, amuhlou wrote: > > > &g

[jQuery] Re: All is well except in IE - links initially not clickable

2009-01-30 Thread precar
Hi, Yes, I'm using the bind() method with 'click'. Is that the correct approach? Precar. On Jan 28, 9:47 am, amuhlou wrote: > It looks like it's not appending the "selected" class to the li > onClick in IE7.  Are you using the bind() method to apply the

[jQuery] All is well except in IE - links initially not clickable

2009-01-28 Thread precar
y category" and then click, they work. As I mentioned, this only happens in IE 7. I've tested in IE 8 beta 2 and it works fine. Does anyone have any suggestions for a workaround? If it would be helpful I'll post the page code here, or you may view it directly from the site. Thanks for your help, Precar.

[jQuery] Re: jScrollPane initialization problem

2009-01-04 Thread precar
I have structured it. On Jan 4, 8:45 pm, precar wrote: > Hi guys, > > I've searched around in jScrollPane threads but can't seem to find > what I'm looking for. > > My site (http://pranshuarya.com/p2) has a bunch of collapsing divs > controlled with show() and hide

[jQuery] jScrollPane initialization problem

2009-01-04 Thread precar
Hi guys, I've searched around in jScrollPane threads but can't seem to find what I'm looking for. My site (http://pranshuarya.com/p2) has a bunch of collapsing divs controlled with show() and hide(). The jScrollPane scrollbar shows up the first time around, but after that, when I recall the sam

[jQuery] Re: Please help with navigation script

2008-12-28 Thread precar
Still stuck on this...would really appreciate someone's help. Thanks, Pranshu. On Dec 27, 11:56 am, precar wrote: > Hi, > > I cleaned up the code a bit and wanted to repost it.  The site is > athttp://pranshuarya.com/test/pthesis/.  Once again, the specific > problem

[jQuery] Re: Please help with navigation script

2008-12-27 Thread precar
ails').eq(index) != '') { $details = $(data).find('site_details').eq(index).text(); var html_details = '' + $details + ''; $('#site_details').append($(html_details)); } var html_skills = 'Skills used:' + $sk

[jQuery] Please help with navigation script

2008-12-26 Thread precar
var index = $('#categories ul li').index(this); var $category = $(cats).find('category').eq(index).text(); $('#sites').empty(); $('#sites').append('<div id="sites_border"></div>'); $('#sites').append('<div id="refine_by">Refine by category</ div>'); $('#sites').append('<ul>'); $sites = $(data).find('categories').filter(':contains (JavaScript)'); $sites.each(function() { var $entry = $(this).parent(); var $site_title = $entry.find('site_title').text(); var html_site = '<li>' + $site_title + '</li>'; $('#sites ul').append($(html_site)); }); $('#categories').hide('slow'); showsites(); }); }); }); }); $('#pfolio_close').click(function() { $('#portfolio').hide('slow'); $('#pfolio_close').hide('slow'); }); }); }); Let me know of any other information I can provide to be helpful. Thanks, Precar.

[jQuery] :contains working with text, but not with variable

2008-12-26 Thread precar
) the statement works, so I know it's not the rest of the statement that's the problem. Can someone shed light on what the proper syntax is for using :contains with a variable name? Thank you, Precar.