[jQuery] Tablesorter + repeatHeaders widget bug?

2007-11-12 Thread angusmojo
Hi, I 'm using tablesorter w/ my own parser and sort table link outside the table w/ no problem. I've just a problem w/ repeatHeaders widget example available on the sample page here: http://tablesorter.com/docs/example-widgets.html If you click on one sortable header, headers are repeated 6x

[jQuery] Re: Sortable on dynamic content - how to?

2007-11-12 Thread webrocker
hi, I would try and re-declare the .Sortable object after you've appended the content and see if that works. This would mean that the .Sortable object works only on elements present inside the ul the moment the object is given. Prior to this I would have a look at the generated source after

[jQuery] Show me what you created using jQuery / web apps

2007-11-12 Thread herbasher
Hi! I'd love if anyone wants to share interactive websites, or in particular web apps they have created using jQuery. I am starting to work on a simple task manager, and wanted to see what other people out there have created - what is possible, so to speak. Also, if there is any developers out

[jQuery] manipulate loaded html

2007-11-12 Thread Cameron Taggart
Hi, I am using the jQuery 1.2.1 and I am able to load an external html document into the DOM. I would like to manipulate the loaded elements, but I haven't been able to figure out how to get references to them. $('div#g_sidebar').load('sidebar.html', new function(){ console.log('loaded

[jQuery] Re: 'this.$event[...].keys' is null or it isn't an object

2007-11-12 Thread dandi
I still have this problem ... please help me :-

[jQuery] jqModal re-binding

2007-11-12 Thread raptor
hi, I have let say an element which I use as for dialog's let say : div id=dialogdiv id=content/div/div then i use : $('#dialog').jqm({ ajax: url, target: '#content' }); so far ok.. it works. But now I want to reuse this dialog. But if I try to bind again with different url2:

[jQuery] manipulate loaded html

2007-11-12 Thread Cameron Taggart
Hi, I am using the jQuery 1.2.1 and I am able to load an external html document into the DOM. I would like to manipulate the loaded elements, but I haven't been able to figure out how to get references to them. $('div#g_sidebar').load('sidebar.html', new function(){ console.log('loaded

[jQuery] Accessibility, CSS

2007-11-12 Thread [EMAIL PROTECTED]
Have just joined and nervously used Jquery for the first time. Just woudering about two thngs: 1. When jquery modifies styles it seems to do in-line styles. I tend to keep all my styles external. Does it have to do it in-line? 2. I see no mention of accessibility or advice on validating or

[jQuery] Re: Nested getJSON

2007-11-12 Thread Mark Lacas
It appears that I can't nest getJSON calls. When I make the second call, the throbber in Firebug spins forever. I'm getting a list of changes from a database and then trying to get more precise data on each change with a second getJSON call in an anonymous function in the first getJSON call.

[jQuery] How to make the first word bold.

2007-11-12 Thread Viktor Tarm
I am trying to make the first word of a sentence (a title from a generated feed) bold. TURN THIS: div id=title a href=123.htmlOne Two Three/a /div INTO THIS: div id=title a href=123.htmlstrongOne/strong Two Three/a /div I sure there is a way to do with jQuery, but I can't

[jQuery] cross domain ajax calls

2007-11-12 Thread [EMAIL PROTECTED]
hi folks. ok. it's possible to make cross-domain ajax calls if you get json data, but i need to to pull xml. i need to get some xml data from another domain. isn't there any solution for this problem? :(

[jQuery] jqGrid update

2007-11-12 Thread Tony
Just now I have updated the jqGrid. The news are: - Row editing - From now jqGrid can accept XML and JSON data with arbitrary structure using a xmlReader and jsonReader. Demo at: http://trirand.com/jqgrid/jqgrid.html Just now I will work hard on documentation. Enjoy Tony

[jQuery] Re: Accessibility, CSS

2007-11-12 Thread Karl Rudd
For non-inline styles you can just use the addClass and removeClass functions. As for accessibility etc, it's quite a complex, somewhat specialised subject. You might try websites like http://juicystudio.com/ for more details about how screen readers etc cope with JavaScript. Karl Rudd On Nov

[jQuery] Re: Safari Mac fatal error

2007-11-12 Thread RobG
On Nov 12, 5:35 pm, Michael Geary [EMAIL PROTECTED] wrote: That's invalid JavaScript. It's not the duplicate function name that makes it invalid, it's the fact that those are named functions at all. Even if you reduced the code to this, it would still be invalid: $(document).ready(

[jQuery] Re: SITE: http://www.bankofamerica.com/

2007-11-12 Thread Andy Matthews
I only saw it in their admin area, for account holders. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pcdinh Sent: Saturday, November 10, 2007 7:43 AM To: jQuery (English) Subject: [jQuery] Re: SITE: http://www.bankofamerica.com/ Great news

[jQuery] Re: SITE: http://www.bankofamerica.com/

2007-11-12 Thread Andy Matthews
Nice. Didn't bother checking the version on it. That's cool that they're using the latest and greatest. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of MikeR Sent: Saturday, November 10, 2007 4:16 PM To: jQuery (English) Subject: [jQuery] Re:

[jQuery] Re: This jQuery mailing list

2007-11-12 Thread Andy Matthews
Seriously? There's several hundred emails a day on this list. And you think it's not active? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of herbasher Sent: Sunday, November 11, 2007 12:07 PM To: jQuery (English) Subject: [jQuery] This jQuery

[jQuery] Re: Ingrid, jQuery Datagrid : Update, v0.9.1

2007-11-12 Thread Andy Matthews
I found it REALLY slow in IE7 using the bells and whistles demo. Clicking one of the column headers to sort on took several seconds. The loading bar was a very nice effect, but there's no reason it should have taken that long, not with only 20 or 30 rows. I'd work on speed increases before any

[jQuery] Re: This jQuery mailing list

2007-11-12 Thread pd
I posted a message today and it has not appeared yet. In fact nothing has appeared in the last 10 hours. John have you tightened the control of the list? Is it now more heavily moderated than in the past? pd On Nov 12, 5:06 am, herbasher [EMAIL PROTECTED] wrote: I read somewhere that the

[jQuery] Re: This jQuery mailing list

2007-11-12 Thread pd
Ooops, sorry all. It seems the group home page is now sorting a little differently. I thought I should see my message at the top but it appears sorted on popularity now? On Nov 13, 1:15 am, pd [EMAIL PROTECTED] wrote: I posted a message today and it has not appeared yet. In fact nothing has

[jQuery] Cross Browser Issues - Simple use of JQuery

2007-11-12 Thread Andrew Banks
Hi, I have a series of nested drop down lists being used for the navigation on a website. I have added a click() event to certain elements to toggle the visibility of some nested elements. This works in Firefox and Opera perfectly but the wrong elements are being toggled in IE6. I think the

[jQuery] Re: Sortable on dynamic content - how to?

2007-11-12 Thread asle
Thanks webrocker, sorry for my frustration. I solved this myself and saw your reply which was exactly what solved it. In the sortable plugin you can declare a new object as a .Sortable. I was a bit lost about listen and live query. Still a couple of things I am not sure about: - I think you need

[jQuery] Re: Ingrid, jQuery Datagrid : Update, v0.9.1

2007-11-12 Thread matthew knight
Excellent, thanks Karl for that feedback - I'll make a note of it. Anything else, let me know Matt On Nov 11, 11:57 pm, Karl Rudd [EMAIL PROTECTED] wrote: A quick initial test on Safari 2.0.4 comes up with a syntax error on line 124 of the main JS file, jquery. .css({float: 'left',

[jQuery] AjaxTop - New plugin

2007-11-12 Thread Matt
Hi, This is to let you know about the AjaxTop plugin. It provides a way to bind XML to JavaScript objects. Some of the things you can do with it are: - Load XHTML with embeded client side custom tags - Treat XML as a command format for server responses - Handle XML as semantic data

[jQuery] clicking appended element

2007-11-12 Thread system.drawing
guys, for example i want to append the li element dynamically and attach the click event HTML : ul id=subs /ul JS: $(document).ready(function() { ... //add dummy data for(var i = 0; i 5; i++) { dataString +=lia href='#' rel='+i+' title='+i+' class='group'+i+/a/li };

[jQuery] Re: cross domain ajax calls

2007-11-12 Thread Karl Swedberg
On Nov 12, 2007, at 6:57 AM, [EMAIL PROTECTED] wrote: hi folks. ok. it's possible to make cross-domain ajax calls if you get json data, but i need to to pull xml. i need to get some xml data from another domain. isn't there any solution for this problem? :( I use curl with PHP to create a

[jQuery] cross domain ajax calls

2007-11-12 Thread [EMAIL PROTECTED]
thank you so much karl. i forgot to point out that i need a client-side solution. because, the server which is serving the xml document i need, only accepts one request per second. if you query more, the server blocks my servers ip. i need a pure java script solution. so every query will be

[jQuery] Re: jqGrid update

2007-11-12 Thread Rey Bango
This looks AWESOME Tony! :) Tony wrote: Just now I have updated the jqGrid. The news are: - Row editing - From now jqGrid can accept XML and JSON data with arbitrary structure using a xmlReader and jsonReader. Demo at: http://trirand.com/jqgrid/jqgrid.html Just now I will work hard on

[jQuery] Re: Accessibility, CSS

2007-11-12 Thread Benjamin Sterling
I will second Karl on his first point. But for accessibility, not sure if I can explain well the things you need to do to make you app accessible, but a few key things are: 1. Never use display:none or visiblility:hidden always use position:absolute;left:999em;top:999em This will keep things

[jQuery] Re: cross domain ajax calls

2007-11-12 Thread Jan Sorgalla
Hi, On 12 Nov., 15:50, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: thank you so much karl. i forgot to point out that i need a client-side solution. because, the server which is serving the xml document i need, only accepts one request per second. if you query more, the server blocks my

[jQuery] Re: iframe bug document.defaultView.getComputedStyle(elem,null)

2007-11-12 Thread Geoffrey
I think this this is covered by bug 1661 http://dev.jquery.com/ticket/1661 I just ran into this problem as well. Hopefully it will be addressed soon. On Oct 10, 11:41 pm, Skilip [EMAIL PROTECTED] wrote: Hi, I found a bug with jQuery version 1.2. It concerns the following error generated by

[jQuery] Re: Google Analytics Tracking With jQuery

2007-11-12 Thread jason
D'oh! That was it. I'm getting good data back now. I'll clean up the code a little bit and get it posted to the plugin repository as soon as I get a chance. Thanks again, Jason On Nov 11, 10:13 pm, jason [EMAIL PROTECTED] wrote: Thanks for taking a look, Craig. I certainly hope it turns out

[jQuery] Invite me please

2007-11-12 Thread Karlson
Hi... I am from Kiev, Ukraine. My name is Alexandr Petrov and I am 26 years old. Now I write code for google gadget and use jquery + interface... and have a problem... I use SlideOutLeft and SlideInRight but have a shakes when SlideOutLeft finish and SlideInRight starts it's movement e.g.

[jQuery] Re: Sortable on dynamic content - how to?

2007-11-12 Thread webrocker
hm... multiple IDs are definetly not valid. But I think you could easily replace the part: $(#additem).click(function(){ $('ul.items') .append('li id=newitemnew item/li') .SortableAddItem(document.getElementById('newitem')); }); with something like this: var myi = 1;

[jQuery] Re: Cross Browser Issues - Simple use of JQuery

2007-11-12 Thread [EMAIL PROTECTED]
To nest lists properly, I believe you want to put the ul you are toggling inside the li you are clicking, like this lia href=javascript:;Sub Level 1/a ul class=SubSubLevelCategory lia href=javascript:;Bottom Level 1/a/ li

[jQuery] Re: How to make the first word bold.

2007-11-12 Thread [EMAIL PROTECTED]
Somebody else probably has a more consice method but you could try something like this var mystring = One Two Three; //replace with your string var stringarray = mystring.split( ); var firstword = mystring.split( )[0]; myarray = jQuery.grep(stringarray, function(n, i){ return (i 0); });

[jQuery] Re: This jQuery mailing list

2007-11-12 Thread Rey Bango
Mail has been flowing for me all morning and I verified that there was no issue with your specific account. From our end, it all looks good. Rey... pd wrote: I posted a message today and it has not appeared yet. In fact nothing has appeared in the last 10 hours. John have you tightened

[jQuery] Re: How to make the first word bold.

2007-11-12 Thread Andy Matthews
Can you provide the setup for the RSS feed? If you know that the feed will always be links like this: div id=title a href=123.htmlbOne Two Three/a/b/div a href=456.htmlfour five six/a /div a href=789.htmlseven eight nine/a /div And you just want the first link to be

[jQuery] Fix for BlockUI slowness

2007-11-12 Thread Matt Kruse
I just spent a while tracking this down, so I thought I would post it here in case anyone is searching the archives in the future. I use blockUI to block containers while they are getting loaded via ajax. I found that in many cases, the call to block was going very slow - sometimes taking 5

[jQuery] Re: Safari Mac fatal error

2007-11-12 Thread Michael Geary
From: Michael Geary That's invalid JavaScript. It's not the duplicate function name that makes it invalid, it's the fact that those are named functions at all. Even if you reduced the code to this, it would still be invalid: $(document).ready( function () {

[jQuery] Re: How to make the first word bold.

2007-11-12 Thread Karl Swedberg
You could also do this with a regular expression. Maybe something like this: var mystring = $('#title a:first').html(); var firstword = mystring.replace(/(^\w+)/,'strong$1/strong'); $('#title a:first').html(firstword); --Karl _ Karl Swedberg www.englishrules.com

[jQuery] Manipulate elements in new window (context)

2007-11-12 Thread Evgeni Dzhelyov
Hello, I'm using: var plan = window.open(tmp.htm, plan); $(#header, plan.document).hide(); $(#main).hide(); * it's bind to a button onclick event to open a new window and manipulate it, but when I execute it nothing have happened in the new window. When I trace down with firebug everything

[jQuery] Script evaluation in IE7 fails

2007-11-12 Thread TAZ
I have a jQuery script that loads html into the page. Sometimes, within this html I would like to put a small script to handle button functions. Such a script runs fine in FF but not in IE7 (Untested IE6) I worked around this issue for now by putting my script in a div and having jQuery evaluate

[jQuery] Re: Show me what you created using jQuery / web apps

2007-11-12 Thread Glen Lipka
Ben Nadel has been working on an exercise task list and a calendar using jQuery. http://www.bennadel.com/blog/1027-Exercise-List-Building-The-Domain-Model-Saucy-.htm http://www.bennadel.com/projects/kinky-calendar.htm (Hmm, the cal doesnt have much JS yet at all) Regarding sites using jQuery,

[jQuery] Re: cross domain ajax calls

2007-11-12 Thread Glen Lipka
Have you seen Purple Include? http://blueoxen.net/c/purple/purple-include/ The thread got messed up in Gmail so I lost the original question. Glen On Nov 12, 2007 8:20 AM, Jan Sorgalla [EMAIL PROTECTED] wrote: Hi, On 12 Nov., 15:50, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: thank you

[jQuery] Re: iframe bug document.defaultView.getComputedStyle(elem,null)

2007-11-12 Thread Geoffrey
As a quick fix for this problem, you can make a plugin (I think this would classify as a plugin) just add the following after you include jquery jQuery.extend({ curCSS: function(elem, prop, force) { var ret, stack = [], swap = []; // A helper method for

[jQuery] Re: clicking appended element

2007-11-12 Thread Wizzud
Insert ... var dataString = ''; ...in front of your 'for' loop and it works fine! On Nov 12, 12:16 pm, system.drawing [EMAIL PROTECTED] wrote: guys, for example i want to append the li element dynamically and attach the click event HTML : ul id=subs /ul JS:

[jQuery] Zoomimage

2007-11-12 Thread Stefan Petre
Another plugin to present images http://www.eyecon.ro/zoomimage/

[jQuery] Re: Zoomimage

2007-11-12 Thread Karl Swedberg
Excellent plugin! Looks gorgeous. Very much like the highSlide image gallery that many people on this list have mentioned. Congrats. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 12, 2007, at 2:43 PM, Stefan Petre wrote: Another plugin to

[jQuery] Powered by jQuery -- ActiveState?!

2007-11-12 Thread Tobias Parent
so I'm surfing around, and I've put the jQuery sniffer on for fun -- and ActiveState pops up the sniffer-generated logo! I mean, how cool is that?! -Toby

[jQuery] jcarousel using jquery - VERY slow init in IE7

2007-11-12 Thread tflanders
I have a very simple jcarousel example that works perfectly in Firefox but takes about 20 seconds to startup in IE7. This is using jcarousel 0.2.1 and jquery 1.2.1. Here is a link to the sample (very straightforward html): http://www.azestimators.com/slide/az.htm If you can help me figure out

[jQuery] Re: jqGrid update

2007-11-12 Thread Cloudream
one of greatest useful plugins ^-^ On Nov 12, 7:59 pm, Tony [EMAIL PROTECTED] wrote: Just now I have updated the jqGrid. The news are: - Row editing - From now jqGrid can accept XML and JSON data with arbitrary structure using a xmlReader and jsonReader. Demo

[jQuery] Re: Ingrid, jQuery Datagrid : Update, v0.9.1

2007-11-12 Thread matthew knight
@Andy: The latency isn't Ingrid itself: its the data coming back - the feed is very slow to respond. When tested with a local data store, response time is (almost) instant. She's quick. Please have another look and confirm this when you get a chance (use a tool like Fiddler, for example, and

[jQuery] Re: jqGrid update

2007-11-12 Thread Steve Brownlee
Fantastic job, Tony. I already know where I can use this. On Nov 12, 5:59 am, Tony [EMAIL PROTECTED] wrote: Just now I have updated the jqGrid. The news are: - Row editing - From now jqGrid can accept XML and JSON data with arbitrary structure using a xmlReader and jsonReader. Demo

[jQuery] Re: Ingrid, jQuery Datagrid : Update, v0.9.1

2007-11-12 Thread Guy Fraser
Andy Matthews wrote: I found it REALLY slow in IE7 using the bells and whistles demo. Clicking one of the column headers to sort on took several seconds. The loading bar was a very nice effect, but there's no reason it should have taken that long, not with only 20 or 30 rows. I'd work on

[jQuery] How this can be done with jQuery

2007-11-12 Thread sarn
Hi, I'm a newbe and need to get a simple thing done with jQuery ... which doesn't seem to be that simple to me. Want a sort of accordian effect with just one div attached to the bottom of the page which slides in/up on hover and slides out when cursor is out ... there's one more thing

[jQuery] Re: How to make the first word bold.

2007-11-12 Thread Andy Matthews
Viktor... You'd probably need an $.each() on there then. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Viktor Tarm Sent: Monday, November 12, 2007 2:35 PM To: jQuery (English) Subject: [jQuery] Re: How to make the first word bold. Thank you

[jQuery] Re: How this can be done with jQuery

2007-11-12 Thread Jeferson Koslowski
Take a look here: http://commadelimited.com/ Its not mine (its from Andy Matthews), but he is doing what u want to do. PS: he is an active user of this list too. On Nov 12, 2007 7:17 PM, sarn [EMAIL PROTECTED] wrote: Hi, I'm a newbe and need to get a simple thing done with jQuery

[jQuery] Re: Zoomimage

2007-11-12 Thread Matthieu BARBE
I love this plugin... good job stefan ! 2007/11/12, Stefan Petre [EMAIL PROTECTED]: Another plugin to present images http://www.eyecon.ro/zoomimage/

[jQuery] Re: How this can be done with jQuery

2007-11-12 Thread sarn
Jeferson Koslowski wrote: Take a look here: http://commadelimited.com/ This looks quite close to what I'm thinking of - the only difference I want is the div to slide in on over ... -- View this message in context:

[jQuery] Re: Powered by jQuery -- ActiveState?!

2007-11-12 Thread polyrhythmic
w00t! From the header: script type=text/javascript language=JavaScript src=/_js/lib/ jquery.js/script They're running the packed version, interestingly. ActiveState's Komodo has been supporting jQuery through extensions since 1.1.1, even releasing the 1.1.4 extension same-day as the official

[jQuery] Re: Invite me please

2007-11-12 Thread polyrhythmic
Alexander, You've found the right group of people. What version of jQuery are you using? 1.2 and above are known to not work with those Interface functions (see thread: http://groups.google.com/group/jquery-ui/browse_thread/thread/8179ba78b23e891f/e4ab8be5475b0c8f?lnk=raot), since Interface is

[jQuery] Re: Safari Mac fatal error

2007-11-12 Thread RobG
On Nov 13, 12:26 am, pd [EMAIL PROTECTED] wrote: Hi Just thought I'd re-iterate that I didn't post this item to whinge or whine about dodgy code being invalid or unecessary. No need to be defensive, you pointed out a legititmate bug. Safari might not have the browser-share of IE or

[jQuery] Re: Zoomimage

2007-11-12 Thread Glen Lipka
I think I want to cry. This is beautiful. Keyboard shortcuts, easing, clear styling instructions. Wonderful. I am going to switch to this from Highslide for sure. Although, I can't help myself, I need to point out a couple of tiny items (TINY ONES) 1. The header should probably have a css rule

[jQuery] Re: How to make the first word bold.

2007-11-12 Thread Wizzud
eg. $('#links a').each(function(){ var me = $(this); me.html( me.text().replace(/(^\w+)/,'strong$1/strong') ); }); or $('#links a').each(function(){ var me = $(this) , t = me.text().split(' '); me.html( 'strong'+t.shift()+'/strong '+t.join(' ') ); }); etc On Nov

[jQuery] Re: Zoomimage

2007-11-12 Thread Stefan Kilp [sk-software]
nice plugin. on testing with Safari/Win i noticed that the keyboard navigation does not work for me , FF is fine. Best regards, Stefan Kilp Another plugin to present images http://www.eyecon.ro/zoomimage/ -- Stefan Kilp SK-Software, Entwicklung Beratung email: [EMAIL PROTECTED]

[jQuery] Feature Request: Add support for CSS position:fixed for IE6 and lower

2007-11-12 Thread Daniel MacDonald
I don't know if this is the correct forum for this type of request, but it would be extremely helpful if jQuery could apply the hacked IE css for position: fixed. I've been using the following in my conditional IE stylesheet: /* IE hacked CSS */ #topleft { position: absolute; top:

[jQuery] Re: Powered by jQuery -- ActiveState?!

2007-11-12 Thread Glen Lipka
How does the sniffer work? Glen On Nov 12, 2007 12:28 PM, Tobias Parent [EMAIL PROTECTED] wrote: so I'm surfing around, and I've put the jQuery sniffer on for fun -- and ActiveState pops up the sniffer-generated logo! I mean, how cool is that?! -Toby

[jQuery] Easing cheat sheet demo page

2007-11-12 Thread Glen Lipka
I just couldn't get my head around the new easing naming conventions. So I made a cheat sheet demo page. http://www.commadot.com/jquery/easing.php At some point someone pointed to a page that had the cool graph that showed what the math meant. Anyone know what it is? Glen

[jQuery] Re: Powered by jQuery -- ActiveState?!

2007-11-12 Thread Tobias Parent
... wait for it... Very well! (ba-dum TSHCH!) Actually, it's a greasemonkey Scriptlet that simply checks for the existence of a jquery object, and if it finds one, creates a div displaying the jquery logo. Let me see if I can remember where I found it - or look at last week's discussions of

[jQuery] Re: Powered by jQuery -- ActiveState?!

2007-11-12 Thread Glen Lipka
Worked! Thanks. Glen On Nov 12, 2007 5:16 PM, Tobias Parent [EMAIL PROTECTED] wrote: ... wait for it... Very well! (ba-dum TSHCH!) Actually, it's a greasemonkey Scriptlet that simply checks for the existence of a jquery object, and if it finds one, creates a div displaying the jquery

[jQuery] Re: Zoomimage

2007-11-12 Thread Glen Lipka
Playing with the settings. http://www.commadot.com/jquery/experiments/easebox/ Great work Stephan! If I wanted to use DimScreen with it, would I just call *onZoomIn? Glen * On Nov 12, 2007 3:52 PM, Stefan Kilp [sk-software] [EMAIL PROTECTED] wrote: nice plugin. on testing with Safari/Win i

[jQuery] Re: Easing cheat sheet demo page

2007-11-12 Thread [EMAIL PROTECTED]
Nice work Glen, Appreciated, and book marked. I think the math link you were after could be: http://www.robertpenner.com/easing/ Cheers Stephen

[jQuery] Re: Easing cheat sheet demo page

2007-11-12 Thread Glen Lipka
Thanks, There was a dynamic chart that when you chose the different styles it showed a chart with a curve. It was fancy schmancy. I looked through penner's site and couldn't find it. :( Glen On Nov 12, 2007 6:01 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Nice work Glen, Appreciated,

[jQuery] looking for tutorial

2007-11-12 Thread [EMAIL PROTECTED]
Hi, I currently wrigth easy jQuery plugin but today I find myself in a new territory. I want to let my plugin perform a callback called as attributes: ... success:function(){ .} My probem is to wrigth the code that let the plugin evaluate the callback. Anyone knows if there is any

[jQuery] Re: Easing cheat sheet demo page

2007-11-12 Thread Marshall Salinger
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 different curves and you can see the effect by clicking on the ball and then on another point in the movie. I have been thinking about creating a page that

[jQuery] jQpanels 1.0.2 Update

2007-11-12 Thread [EMAIL PROTECTED]
The jqPanles plugin has been updated to version 1.0.2. All the bugs related to the accordion behaviour have been corrected. A demo/Api is available here: http://www.andreacfm.com/examples/jQpanels/ Let me have your feedback. Andrea

[jQuery] Re: jcarousel using jquery - VERY slow init in IE7

2007-11-12 Thread Jan Sorgalla
Hi, On 12 Nov., 20:53, tflanders [EMAIL PROTECTED] wrote: I have a very simple jcarousel example that works perfectly in Firefox but takes about 20 seconds to startup in IE7. This is using jcarousel 0.2.1 and jquery 1.2.1. Here is a link to the sample (very straightforward

[jQuery] Re: Zoomimage

2007-11-12 Thread Stefan Petre
I'm glad to hear this :). 1. You can edit the CSS and add add cursor move to '.zoomimage_controls' 2. You can do rounded corners too. Change the shadow image to include the rounded corners too Glen Lipka wrote: I think I want to cry. This is beautiful. Keyboard shortcuts, easing, clear

[jQuery] Re: Zoomimage

2007-11-12 Thread Stefan Petre
I can confirm this. I will fix it, I was too tired last night. Stefan Kilp [sk-software] wrote: nice plugin. on testing with Safari/Win i noticed that the keyboard navigation does not work for me , FF is fine. Best regards, Stefan Kilp Another plugin to present images