[jQuery] ajax load and javascript

2007-11-16 Thread george.gsgd
I'm loading the content of an external page via load but I don't want the script content, as it buggers up ie6 (it's a page with jquery included and that seems to cause problems). Is it possible to tell load not to run scripts on the HTML it loads? Thanks, George.

[jQuery] Re: RELEASE: Easing Plugin 1.3 - Now with default easing

2007-11-15 Thread george.gsgd
Haha, that good huh? On Nov 13, 9:19 am, george.gsgd [EMAIL PROTECTED] wrote: Hi All, I've just updated the easing plugin so you can now specify a default equation for all your animations. http://gsgd.co.uk/sandbox/jquery/easing/ Should make plugin integration much simpler

[jQuery] Re: Easing cheat sheet demo page

2007-11-13 Thread george.gsgd
I think you mean this one? Top link on the easing page... http://www.robertpenner.com/easing/easing_demo.html On Nov 13, 2:15 am, Glen Lipka [EMAIL PROTECTED] wrote: Thanks, There was a dynamic chart that when you chose the different styles it showed a chart with a curve. It was fancy

[jQuery] Re: Easing cheat sheet demo page

2007-11-13 Thread george.gsgd
Hi Marshal, That would be a great addition to the plugin, let me know how you get on. George. On Nov 13, 2:44 am, Marshall Salinger [EMAIL PROTECTED] wrote: Hey Glen, Here is a page that shows the curves. It's a custom easing tool for flash, but it is basically the same thing. It shows the

[jQuery] RELEASE: Easing Plugin 1.3 - Now with default easing

2007-11-13 Thread george.gsgd
Hi All, I've just updated the easing plugin so you can now specify a default equation for all your animations. http://gsgd.co.uk/sandbox/jquery/easing/ Should make plugin integration much simpler. It overwrites the default swing (renames the standard one to jswing) in order to accomplish

[jQuery] Re: ANNOUCE: Easing Plugin Updated

2007-10-05 Thread george.gsgd
My favorite plugin. #1. Thanks Glen :)

[jQuery] ANNOUCE: Easing Plugin Updated

2007-10-04 Thread george.gsgd
Made some changes to the easing plugin, it now contains all of the Penner equations and has name changes for the easing types. I've done a compatibility plugin to ease the transition, but felt keeping the names consistent with the original equations was the way to go.

[jQuery] Re: Easing Plugin brakes on all methods based on Math.exp with jQuery 1.2.X

2007-10-03 Thread george.gsgd
Hmmm, missed this one, I'm now looking into it, it's possible this has been broken for a while. Thanks for noticing :) George. On Sep 27, 12:09 pm, ravenel [EMAIL PROTECTED] wrote: Hello I just tested the The Excellent Easing Plugin fromhttp://gsgd.co.uk/sandbox/jquery.easing.phpwith jQuery

[jQuery] Re: Parse JSON with jQuery and JavaScript (tutorial)

2007-10-02 Thread george.gsgd
jQuery definitely needs a proper forum. On Oct 2, 2:40 pm, Giant Jam Sandwich [EMAIL PROTECTED] wrote: I know. I know. More shameless self-promotion for jQuery tutorials. If there is a better place to put this, please let me know.

[jQuery] Documentation / API

2007-09-28 Thread george.gsgd
So what's going on with this? Whilst I know it's a huge job and takes time, the current docs are just plain inadequate. It used to be so much better. And there's no linking between related functions. I realise it's a wiki, but there's no information on how to go about editing it and it's all so

[jQuery] Re: My first tutorial: jQuery Rollovers

2007-09-28 Thread george.gsgd
Surely this should be done with CSS. Javascript is great, but making your navigation rely on it is not. Also, it would be better semantics to mark up your menu as a list.

[jQuery] Re: New Plugin: Picklists

2007-09-27 Thread george.gsgd
I think the pattern would be: both multiselectors side by side, and arrows to left and right indicating moving options from left selector to the right and viceversa (instead of add and remove buttons). That's completely do-able without me changing a thing. That's what CSS is for ;) I

[jQuery] Re: Using .children recursively

2007-09-26 Thread george.gsgd
You don't need to use children, that's for if you only want the children... Try this: $('[name]', this).removeAttr(name); http://docs.jquery.com/Selectors for more info That'll do what you're attempting On Sep 26, 8:35 am, voltron [EMAIL PROTECTED] wrote: I am trying to get all the children

[jQuery] Re: newb: How to get google groups like layout

2007-09-26 Thread george.gsgd
Oh dear, I think you've completely misunderstood what jQuery is for. Think of a webpage as three separate elements that make up the finished product: 1. Content (the HTML) 2. Presentation (the CSS) 3. Behaviour (the javascript, in this case jQuery) First port of call would be HTML Dog to learn

[jQuery] Re: New Plugin: Picklists

2007-09-25 Thread george.gsgd
/07, Stephan Beal [EMAIL PROTECTED] wrote: On Sep 24, 4:12 pm, george.gsgd [EMAIL PROTECTED] wrote: Can anyone help me come up with a better name for this? I struggled to come up with 'Picklists', and I'm not sure it's particularly descriptive or obvious... a) Linked Selection? b

[jQuery] Re: New Plugin: Picklists

2007-09-24 Thread george.gsgd
... Does it need anything else before I release it properly? Thanks, George. On Sep 21, 4:21 pm, george.gsgd [EMAIL PROTECTED] wrote: http://gsgd.co.uk/sandbox/jquery/picklists/ A jQuery plugin to turn multiple select boxes into a dual selectpickliststyle thing. Comments suggestion please.

[jQuery] Re: each() and this problems

2007-09-24 Thread george.gsgd
// VERSION 2 supposed to remove bad branches // instead removes ALL branches var this2 ; $(objectfoo).children().each(function(ichild){ this2 = this ; // buffer if($(this2).find('a').not(keeplist)){$(this).remove();}}) Well to try and break it down,

[jQuery] New Plugin: Picklists

2007-09-21 Thread george.gsgd
http://gsgd.co.uk/sandbox/jquery/picklists/ A jQuery plugin to turn multiple select boxes into a dual select picklist style thing. Comments suggestion please.

[jQuery] Re: Blueprint and jQuery

2007-08-25 Thread george.gsgd
On Aug 24, 3:37 pm, Rey Bango [EMAIL PROTECTED] wrote: LOL! It was just a joke George. No worries although he looks like he's about to pounce on something! ;) Yes, I got that, just forgot the smiley! ;)

[jQuery] Blueprint and jQuery

2007-08-24 Thread george.gsgd
Building on the work done by matz in auto generating grids (http:// kematzy.com/blueprint-generator/). I've been working on a javascripty dynamicly resizing grid using jQuery. Have a look at the demo here: http://gsgd.co.uk/sandbox/blueprint/ Feedback much appreciated. Is it worth making

[jQuery] Re: Blueprint and jQuery

2007-08-24 Thread george.gsgd
Scary chipmunk! :-o Is that a good or a bad thing? p.s. for those that haven't seen it yet, blueprint is a CSS grid framework: http://code.google.com/p/blueprintcss/

[jQuery] Re: Help modify this function

2007-08-13 Thread george.gsgd
1) Yes, but not without changing how you do things, you're hiding stuff with css, so you'll have to change that, and write an initialise function that hides the labes. The instead of addClass, just do a .show('slow'); 2) Try moving the blur functionality to the focus function, so when you click

[jQuery] Re: jQuery 1.0.2 conflicts with 1.1.2 ??

2007-08-13 Thread george.gsgd
Updating your thickbox would sound like the best answer: http://jquery.com/demo/thickbox/ It generally works that 1.0.whatever maintains backwards compatability from 1.0, but if you move to 1.1.whatever, that only maintains backwards compatability from 1.1 You dig? [EMAIL PROTECTED] wrote:

[jQuery] Re: How to get font size in pixels?

2007-08-01 Thread george.gsgd
Perhaps think around the problem. Can you get the height of the element? That'd be in pixels regardless. Or maybe use sIFR instead? On Aug 1, 9:47 am, Sam Collett [EMAIL PROTECTED] wrote: When I use $(h1).css(font-size) it differs across browsers. Firefox returns it the way I want (in

[jQuery] Re: Moving Plugins to new repository

2007-07-24 Thread george.gsgd
Have all the bugs been fixed? Plugin repository seems to have major feature creep, so much stuff that doesn't seem necessary. On Jul 24, 3:30 pm, Yehuda Katz [EMAIL PROTECTED] wrote: I'm not sure how many folks have noticed, but an excellent new plugin repository was activated with little

[jQuery] Re: .css(border-color) returning undefined

2007-07-18 Thread george.gsgd
I think backgroundColor works differently as it always has a property, regardless of whether you set it or not. On Jul 16, 6:51 pm, jazzle [EMAIL PROTECTED] wrote: Are you sure? The backgroundColor is returned okay... george.gsgd wrote: $('#animationbox').css('borderColor') looks

[jQuery] Re: .css(border-color) returning undefined

2007-07-16 Thread george.gsgd
$('#animationbox').css('borderColor') looks at the style property of the object not the css in the document, so if it's only in your css you get no value. To get your desired effect you either need to initialise it with javascript $('#animationbox').css('borderColor' '#444') or set it

[jQuery] Re: Tabs or mini tabs?

2007-07-03 Thread george.gsgd
Just use 'view generated source' option in developer toolbar or select and and 'view selected source' in firefox if you don't like the xml On Jul 3, 10:48 am, Bruce [EMAIL PROTECTED] wrote: omg, a demo as an xml file? Makes it unusable for the majority I would think..., me for sure, oh well

[jQuery] Re: jQuery 1.1.3 and easing plugin

2007-07-02 Thread george.gsgd
Nope, it's just a maintenance release - to update to 1.1.3 compatability (as it says in the change notes ;) On Jul 2, 6:50 pm, Glen Lipka [EMAIL PROTECTED] wrote: Are there other changes in that version besides this fix? Glen On 7/2/07, Karl Swedberg [EMAIL PROTECTED] wrote: On Jul 2,

[jQuery] Re: easing plugin break jQuery, easing plugin needs a small fix

2007-06-28 Thread george.gsgd
Hi, I've included the recommended changes and tested against the nightly, all working fine. http://gsgd.co.uk/sandbox/jquery.easing.php So, am I ahead of the game in releasing a 1.1.3 ready plugin (admittedly because I didn't do it right in the first place)? Incidently the new plugin page

[jQuery] Re: error at new plugin page

2007-06-28 Thread george.gsgd
Is there any way to modify/delete releases? On Jun 28, 1:52 pm, Mike Hostetler [EMAIL PROTECTED] wrote: Upon first glance, this appears to be a consequence of some tweaking I did earlier this week. I enabled the ability to browse jQuery plugins by API compatibility, which for some odd reason

[jQuery] Easing and callbacks

2007-06-22 Thread george.gsgd
Hi All, Just a quick note to clear up an issue people seem to have had with my easing plugin: http://gsgd.co.uk/sandbox/jquery.easing.php It is possible to use callbacks with easing, you just need to get the syntax right. There's two options, and mixing them up doesn't work.

[jQuery] Re: Easing rocks

2007-06-21 Thread george.gsgd
Isn't that the point of having plugins, for bells and whistles like this? Obviously it's a great plugin (well I would say that as it's mine ;) but it's not essential functionality by any means.

[jQuery] Re: Easing rocks

2007-06-21 Thread george.gsgd
expoinout. GC On Jun 21, 11:56 am, george.gsgd [EMAIL PROTECTED] wrote: Isn't that the point of having plugins, for bells and whistles like this? Obviously it's a great plugin (well I would say that as it's mine ;) but it's not essential functionality by any means.

[jQuery] jquery.us

2007-05-18 Thread george.gsgd
Has anyone seen this: http://jquery[dot]us (not linked so as not to aid their efforts) Obviously someone trying to cash in with google ads and spammy keyword stuffing. But I got a hit in my referers so they must be doing something right (even though that's so wrong).