[jQuery] Anyway to make flexigrid liquid ?

2008-11-07 Thread yabdab

Anyone know a way to make this flexigrid liquid?

 What I mean is, if it is in a browser window, it resizes with the
window?

It has grab tabs for this, but then you have to resize twice, first
the browser, then the grid.

http://www.webplicity.net/flexigrid/



[jQuery] pngFix and display:none

2008-10-20 Thread yabdab

I am seeing an issue in that POS browser IE6 that goes like this...

pngFix() works only on images that are displayed. I have some hidden
divs (display:none) that contain png files that are reveled when
needed. But they are missing when I show() them.

Any ideas what is happening to them?


[jQuery] Re: pngFix and display:none

2008-10-20 Thread yabdab

The problem is, they are never shown.

Fancy Box takes the html from the original hidden div, then  presents
that to the user. I cannot figure out a way to apply the fix to this
png on-the-fly??? :-(

On Oct 20, 1:22 pm, Isaak Malik [EMAIL PROTECTED] wrote:
 You just need to apply the pngfix to those elements as soon as they are
 shown. Nothing more, nothing less..

 On Mon, Oct 20, 2008 at 5:59 PM, yabdab [EMAIL PROTECTED] wrote:

  I am seeing an issue in that POS browser IE6 that goes like this...

  pngFix() works only on images that are displayed. I have some hidden
  divs (display:none) that contain png files that are reveled when
  needed. But they are missing when I show() them.

  Any ideas what is happening to them?

 --
 Isaak Malik
 Web Developer


[jQuery] local/serial scroll with fades?

2008-10-01 Thread yabdab

Hey all, I am hacking around with the coda-slder...
http://jqueryfordesigners.com/demo/coda-slider.html
...and wondered if there was a simple way to have the panels fade in/
out as they scroll left/right?


[jQuery] Re: min-imize scripts?

2008-08-18 Thread yabdab

I can see how this could be used on the fly as well. Just call a php
page as your javascript and slap a javascript header on it.

That way you can pull in all your js into one call and minify it at
the same time.

I gotta try that.

Thanks for all the responses guys :-)



On Aug 16, 5:49 pm, Karl Swedberg [EMAIL PROTECTED] wrote:
 I've been using PHP minify lately. It concatenates and minifies your  
 files. Very handy.

 Use it with GZip compression and your site's performance will be  
 better than just using a compression/packer solution.

 http://code.google.com/p/minify/

 --Karl

 
 Karl Swedbergwww.englishrules.comwww.learningjquery.com

 On Aug 15, 2008, at 2:05 PM, yabdab wrote:



  What does everyone use to min-imize their scripts and plugins?


[jQuery] Re: Safari 2 Mac - loads of problems!

2008-07-11 Thread yabdab

Mac users usually stay on top of things better than PC users. Most of
them have likely upgraded to Safari 3.



On Jul 10, 6:34 pm, Dan G. Switzer, II [EMAIL PROTECTED]
wrote:
 Safari 2 has some serious problems with it's Javascript interpreter. Any
 page that has a heavy amount of Javascript will fail. I know the jQuery team
 has to run the jQuery unit tests on Safari 2 in chunks, otherwise Safari 2
 blows up. There's several posts about this in the archives.

 -Dan

 -Original Message-
 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Jeffrey Kretz
 Sent: Thursday, July 10, 2008 2:39 PM
 To: jquery-en@googlegroups.com
 Subject: [jQuery] Re: Safari 2 Mac - loads of problems!

 Unfortunately, I too have had a number of problems related to Safari 2, in
 building a CMS system.  I was able to get the public part of the site to
 work, but the CMS administration (HTML Editor, etc) had many many problems,
 despite everything working well in FF, Opera, IE6 and IE7.

 Eventually, my boss decided to not support Safari 2, and we've had to tell
 our clients on our CMS who use Safari to switch to Firefox or upgrade to
 Safari 3.

 JK

 -Original Message-
 From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of herrflick
 Sent: Thursday, July 10, 2008 10:51 AM
 To: jQuery (English)
 Subject: [jQuery] Safari 2 Mac - loads of problems!

 I've been working on a site that is really heavy with jquery stuff,
 but have found it almost impossible to get even pretty basic stuff
 working in safari 2 on a Mac.

 The development site is at:http://dev2.drfoster.co.uk/

 the scripts I've written are at:
 http://dev2.drfoster.co.uk/script/hg-functions.js
 http://dev2.drfoster.co.uk/script/graph.js, and i'm using jquery
 v1.2.6.

 The graphs  all the page functions work as intended in all the
 browsers I need (ie6 + win, firefox 2+, safari 3 mac, safari win etc),
 but in safari 2 Mac the browser originally just crashed. I added
 browser detection and created some basic alternative stuff, but as
 soon as I add more than a few functions, the site stops working.

 Has anyone had a similar issue with jquery, safari 2 (and perhaps
 google maps API?)

 Thanks for listening!


[jQuery] Re: How to make jquery do a link?

2008-06-25 Thread yabdab

Use get
http://docs.jquery.com/Ajax/jQuery.get

$.get('test.php');




On Jun 25, 5:07 am, Pegpro [EMAIL PROTECTED] wrote:
 How can I make jquery do an effect when clicking a link and when it is
 finished animating follow the link?
 I was using window.location = 'index.php' + execute but this means a
 different jquery for every effect (the class of the element being
 animated before the link is the same.