[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 Andy Matthews
That's still not the one he's thinking of. This is what you're looking for Glen: http://hosted.zeh.com.br/mctween/animationtypes.html andy _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Marshall Salinger Sent: Monday, November 12, 2007 8:45 PM To:

[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] Re: jqGrid update

2007-11-13 Thread Tony
Rey, Cloudream, Steve, Thanks :) I must work on documentation - which will be done next week (I hope) Regards On 12 Ноем, 22:43, Steve Brownlee [EMAIL PROTECTED] wrote: Fantastic job, Tony. I already know where I can use this. On Nov 12, 5:59 am, Tony [EMAIL PROTECTED] wrote: Just now

[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: Cross Browser Issues - Simple use of JQuery

2007-11-13 Thread Sam Collett
On Nov 12, 4:31 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: To nest lists properly, I believe you want to put the ul you are toggling inside the li you are clicking Also, only li can be nested in ul or ol, so it would be invalid HTML (although browsers forgive that).

[jQuery] ANNOUNCE: tinyEdit v.1.0 plugin for jQuery released

2007-11-13 Thread Giant Jam Sandwich
The tinyEdit plugin informs users which HTML tags are allowed in a textarea, and it provides easy select/insert functionality for those supported tags. The primary purpose of the plugin is to provide bloggers with a lightweight editor for comments. Any suggestions or issues, please let me know.

[jQuery] Re: jqGrid update

2007-11-13 Thread David
Tony it's super super. I think on column client it's possible show combobox?? On Nov 12, 1: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

[jQuery] Jquery rounded corners.

2007-11-13 Thread Giovanni Battista Lenoci
Hi, I'm trying this plugin: http://www.methvin.com/jquery/jq-corner-demo.html But I've a little problem. If have a background color for my body (for example red), then a container with background color of white, if I use this plugin in the backgound of my corners i will see the red background

[jQuery] Re: jqGrid update

2007-11-13 Thread Tony
David, Three controls are planed to the final release - textarea, check box and list(combo) box. The first two are easy to implement - only the list box require additinal code. Regards Tony On 13 Ноем, 14:59, David [EMAIL PROTECTED] wrote: Tony it's super super. I think on column client it's

[jQuery] Re: ANNOUNCE: tinyEdit v.1.0 plugin for jQuery released

2007-11-13 Thread Rey Bango
Man, not only do you keep a mean blog but you got skills as well! ;) Rey Giant Jam Sandwich wrote: The tinyEdit plugin informs users which HTML tags are allowed in a textarea, and it provides easy select/insert functionality for those supported tags. The primary purpose of the plugin is to

[jQuery] Re: ANNOUNCE: tinyEdit v.1.0 plugin for jQuery released

2007-11-13 Thread Karl Swedberg
Excellent work, Brian! Looks and works great in FF 2 Mac and Safari 2. One thing that would be really nice is to have the insertion point returned to the place in the textarea where it was before clicking a button. This is especially helpful if nothing is selected when adding a tag --

[jQuery] Issue with script block inside a page loaded with .load method.

2007-11-13 Thread Adrien Cardoso
Hey guys, I'm having a weird problem. Browser IE6. I'm loading a page inside a div using onclick=$ ('##c_right_content').load('./act/add.cfm'); This page that gets loaded have the above script block that makes this page makes the whole browser screen blank, while if I remove this block of code,

[jQuery] change the attribute value, when button is clicked

2007-11-13 Thread figo2476
It is not working... I am not sure what should I do html head script type=text/javascript src=jquery.js/script script type=text/javascript charset=utf-8 $(document).ready(function(){ $('#link1').click(function(){ alert('yo');

[jQuery] Re: Zoomimage

2007-11-13 Thread Flesler
Looks awesome! very nice. Ariel Flesler On 12 nov, 20:25, Glen Lipka [EMAIL PROTECTED] wrote: 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,

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

2007-11-13 Thread asle
Thanks, your first suggestion works and is shorter than writing the sortable code again. But this does not work: var myi = 1; $(#additem).click(function(){ $('ul.items') .append('li class=sortableitem newitem'+myi+'new item/li') .SortableAddItem(

[jQuery] Re: jqGrid update

2007-11-13 Thread Ryura
Wonderful, these client side editing features will be incredibly helpful. Any status on the subgrid suggestion I made (allow you to compare any two columns instead of just id=)? On Nov 12, 3:43 pm, Steve Brownlee [EMAIL PROTECTED] wrote: Fantastic job, Tony. I already know where I can use

[jQuery] Re: manipulate loaded html

2007-11-13 Thread Flesler
$('div#g_sidebar').load('sidebar.html', function( response ){ console.log('loaded sidebar'); $(response).children().each(function(i){ //log whatever you want, 'this' will refer to the parsed (child) node }); }); On 12 nov, 02:38, Cameron Taggart [EMAIL PROTECTED] wrote: Hi,

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

2007-11-13 Thread [EMAIL PROTECTED]
try script type=text/javascript $(document).ready(function() { $('#links a').each(function(){ var mystring = $('this').html(); var firstword = mystring.replace(/(^\w+)/,'strong $1/strong');

[jQuery] jQuery.LocalScroll 1.1.2

2007-11-13 Thread Flesler
Hi, I've released version 1.1.2 of this plugin. Changes are: - The default settings have been exposed for modification. - The plugin can still work for dynamically added anchors, using the setting 'persistent'. - The trigger event can be something else than click. - It's possible to make the

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

2007-11-13 Thread Matt W.
This is the value of this list, I do a convoluted solution using grep and all I had to do was use shift. I love how each answer improves on the previous one. On Nov 12, 3:48 pm, Wizzud [EMAIL PROTECTED] wrote: eg. $('#links a').each(function(){ var me = $(this); me.html(

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

2007-11-13 Thread Viktor Tarm
Thanks Wizzud... that's what I was looking for. I had to wrap window.onload = (function(){try{ ... }catch(e){}}); around the script... not sure why, but it seems to work On Nov 12, 5:48 pm, Wizzud [EMAIL PROTECTED] wrote: eg. $('#links a').each(function(){ var me = $(this);

[jQuery] Re: Zoomimage

2007-11-13 Thread Erlend Schei
What a marvellous plugin! Great work, Stefan! I hope you don't mind my sharing a few immediate thoughts in all my excitement. Your plugin is in some ways similar to Leandro Vieira's Lightbox plugin. http://leandrovieira.com/projects/jquery/lightbox/ , but yours is more customizable. What I

[jQuery] HOVER Over Image Enlarge Image

2007-11-13 Thread troymasters
Are there any jquerys that would allow this functionit is used most frequently on Ask.com...when you hover over an image with the cursor a much enlarged image of the thumbnail appears in the browser on top of the page. any script solutions would be appreciated.

[jQuery] Re: Invite me please

2007-11-13 Thread Karlson
Thanx for attention.. Here a simpled code of my google gadget. Insert it in this editor http://code.google.com/apis/gadgets/docs/gs.html#Scratchpad and press preview. # ?xml version=1.0 encoding=UTF-8? Module ModulePrefs title=Why shaking? author=Alexandr

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

2007-11-13 Thread Viktor Tarm
Thanks a lot Wizzud... works perfectly. On Nov 12, 5:48 pm, Wizzud [EMAIL PROTECTED] wrote: 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 =

[jQuery] New to jQuery

2007-11-13 Thread md
My experience w/ Ajax is limited at best. I've used the Spry framework to date and its great w/ the exception of it breaking in Safari. My question is why does this framework break in Safari and if jQuery doesn't how/why is it different? Thanks in advance.

[jQuery] UI vs Interface

2007-11-13 Thread Takis
Hi! It has been stated in the discussion What plugins are ready for prime time that Interface should be superceded by UI soon. Currently both lack the quality of code and documentation that jQuery provides. by J rn Zaefferer! Is there any official truth to that? Or is it just a personal

[jQuery] problems using variables instead of text with :contains()

2007-11-13 Thread jeff
I am a little confused on the syntax for :contains. I want to be able to pass in a variable to the parameter for :contains. It can take either quoted or non-quoted text, which on one hand can be convenient, but on the other is difficult if you are trying to pass a variable. Here is the test

[jQuery] fadeout response div after form submission

2007-11-13 Thread Guillaume Luszack
This is my first post so Hello to everyone on this great list ! :) I have a form which I submit thanks to the jQuery Form plugin. var pdoptions = { target: '#pdresult' }; $('#pdform').ajaxForm(pdoptions); When submitting the form I get the response in the #pdresult div and I would like to

[jQuery] Re: Zoomimage

2007-11-13 Thread vitormv
seeing it in action almost made me cry... its just... PERFECT!! beautiful and all that stuff! simply amazing ill definitely use it on my website :D thanks for the wonderful plugin Cheers from Brazil :D On Nov 13, 3:29 am, Stefan Petre [EMAIL PROTECTED] wrote: I can confirm this. I will fix

[jQuery] Re: jQuery.LocalScroll 1.1.2

2007-11-13 Thread Rey Bango
Great work Ariel! Rey Flesler wrote: Hi, I've released version 1.1.2 of this plugin. Changes are: - The default settings have been exposed for modification. - The plugin can still work for dynamically added anchors, using the setting 'persistent'. - The trigger event can be something else

[jQuery] Re: fadeout response div after form submission

2007-11-13 Thread guix69
Juste adding some info:) I also use the Validate plugin to validate the form before submission. $(#pdform).validate({ event: blur, debug : true, rules: { }, messages: { } });

[jQuery] Re: jqGrid update

2007-11-13 Thread Tony
Ryura, Yes there is solution for this. Please check the JSON SubGrid example - you can pass parameters from master grid. Regards Tony On 13 Ноем, 01:51, Ryura [EMAIL PROTECTED] wrote: Wonderful, these client side editing features will be incredibly helpful. Any status on the subgrid

[jQuery] Re: UI vs Interface

2007-11-13 Thread Rey Bango
Yes that is correct. Joern is a member of the project team so you can rely on what his feedback. UI will supersede Interface. Rey... jQuery Team Takis wrote: Hi! It has been stated in the discussion What plugins are ready for prime time that Interface should be superceded by UI soon.

[jQuery] Re: New to jQuery

2007-11-13 Thread Rey Bango
That's a tough question to ask and it's best to post that on the Adobe forum as they can best answer your Spry question. As for jQuery, we just do quite a bit of testing in all browsers to ensure compatibility. Rey md wrote: My experience w/ Ajax is limited at best. I've used the Spry

[jQuery] Re: Zoomimage

2007-11-13 Thread Stefan Petre
1. I have to think about it, I can not promise anything 2. You are right. I will add an option to make this preloading at page load optional Sorry, it has to stay this way. I develop this plugins for my need first and then I will share it with you guys. I can not change the plugins just for this

[jQuery] Re: Fix for BlockUI slowness

2007-11-13 Thread Mike Alsup
Good stuff, Matt. Thanks for sharing it. I think adding an option is a good idea. Mike On Nov 12, 2007 12:32 PM, Matt Kruse [EMAIL PROTECTED] wrote: 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

[jQuery] Re: Zoomimage

2007-11-13 Thread Ralph Whitbeck
Very nice! Already got plans for it. On Nov 12, 2:43 pm, Stefan Petre [EMAIL PROTECTED] wrote: Another plugin to present images http://www.eyecon.ro/zoomimage/

[jQuery] Re: fadeout response div after form submission

2007-11-13 Thread guix69
Partially replying to myself : I now use this success: cachepd() inside pdoptions and cachepd is this simple function : function cachepd() { $('#pdresult').fadeOut(5000); }; But it seems like fadeOut deletes the div from the DOM because it's not updated anymore if I submit the form

[jQuery] Re: ANNOUNCE: tinyEdit v.1.0 plugin for jQuery released

2007-11-13 Thread Guy Fraser
Giant Jam Sandwich wrote: Any suggestions or issues, please let me know. Thanks! Sweet plugin, tiny codebase too! :D Is it possible to implement different types of tags - eg. bbcode or wiki notation?

[jQuery] Re: change the attribute value, when button is clicked

2007-11-13 Thread Adrian Lynch
Yes it is. Add this to see... alert($('#test_form').attr('action')); $('#test_form').attr('action', 'there'); alert($('#test_form').attr('action')); Adrian On Nov 12, 10:54 pm, figo2476 [EMAIL PROTECTED] wrote: It is not working... I am not sure what should I do html head script

[jQuery] Re: jQuery.LocalScroll 1.1.2

2007-11-13 Thread Adrian Lynch
I'll second that! Adrian On Nov 13, 2:04 pm, Rey Bango [EMAIL PROTECTED] wrote: Great work Ariel! Rey

[jQuery] Re: ANNOUNCE: tinyEdit v.1.0 plugin for jQuery released

2007-11-13 Thread Andy Matthews
I'm guessing it would be trivial to add in your own tags or functions. It seems like the author made it very simple to do so. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Guy Fraser Sent: Tuesday, November 13, 2007 8:35 AM To:

[jQuery] Re: ANNOUNCE: tinyEdit v.1.0 plugin for jQuery released

2007-11-13 Thread Giant Jam Sandwich
Hey Guy, Thanks! For the next release I plan to implement an option for bbcode, but probably not wiki notation. Only because with wiki notation, there is often no open/close syntax, but more a series of characters preceding the text. Brian On Nov 13, 9:34 am, Guy Fraser [EMAIL PROTECTED]

[jQuery] Re: ANNOUNCE: tinyEdit v.1.0 plugin for jQuery released

2007-11-13 Thread Karl Swedberg
On Nov 13, 2007, at 9:34 AM, Guy Fraser wrote: Giant Jam Sandwich wrote: Any suggestions or issues, please let me know. Thanks! Sweet plugin, tiny codebase too! :D Is it possible to implement different types of tags - eg. bbcode or wiki notation? Hi Guy, Not sure what Brian's

[jQuery] Re: Easing cheat sheet demo page

2007-11-13 Thread RenatoCarvalho.com
This Transition cheat sheet of Tweener is very good. You can see the curves and animations too. http://hosted.zeh.com.br/tweener/docs/en-us/misc/transitions.html -- Renato Carvalho Designer - User Interface Developer [site]www.renatocarvalho.com [celular] +55 61 9167-1509 [gtalk]

[jQuery] Re: UI vs Interface

2007-11-13 Thread Jeffrey Kretz
Richard Worth's post really covers it well: http://groups.google.com/group/jquery-ui/browse_thread/thread/71735b88951d3e ca/8603e5d95f8ad78b?hl=enlnk=gstq=interface#8603e5d95f8ad78b I'm not sure if anyone knows the timing (i.e. when would UI be complete enough to fully replace Interface) but it

[jQuery] Re: ANNOUNCE: tinyEdit v.1.0 plugin for jQuery released

2007-11-13 Thread Andy Matthews
That plugin looks like exactly what I need for a project. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Tuesday, November 13, 2007 9:48 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ANNOUNCE: tinyEdit v.1.0

[jQuery] Re: ANNOUNCE: tinyEdit v.1.0 plugin for jQuery released

2007-11-13 Thread Jake McGraw
Any way to include detection for invalid inserts? I was able to do the following: strongHello, world/strong to strongHello, worldem/strong/em Perhaps a recursive tag count on insert? - jake On Nov 13, 2007 11:41 AM, Andy Matthews [EMAIL PROTECTED] wrote: That plugin looks like exactly

[jQuery] Re: UI vs Interface

2007-11-13 Thread Andy Matthews
I believe that Rey Bango said they were in the process of whipping out the new version of UI to fix many of the issues that people have had. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeffrey Kretz Sent: Tuesday, November 13, 2007 10:15 AM

[jQuery] Re: Easing cheat sheet demo page

2007-11-13 Thread Andy Matthews
I'd say that was a better one. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of RenatoCarvalho.com Sent: Tuesday, November 13, 2007 9:55 AM To: jQuery (English) Subject: [jQuery] Re: Easing cheat sheet demo page This Transition cheat sheet of

[jQuery] Problem with display of jcarousel in IE7

2007-11-13 Thread Paul
Hello all, The problem I have is the jcarousel works fine in firefox on the homepage but not in IE, if you visit www.clevergreen.co.uk and scroll down to the products / manufacturers part you will see what I mean. Any help would be greatly appreciated. Thanks very much, Paul

[jQuery] Problems with multiple animations and timeouts

2007-11-13 Thread serializer
Hi, I've set up a simple extension for an image rotator. It looks like this: jQuery.fn.imageRotate = function(delay,speed) { // Converted s into ms delay = delay * 1000; // Get all child items of the list var targetItems =

[jQuery] Re: fadeout response div after form submission

2007-11-13 Thread guix69
another weird thing is that the cachepd function is executed as soon as the page loads so the #pdresult div gets hidden after 5 seconds... why is that ? :)

[jQuery] [BUG-1.2.1] css(...,function(){ return ...;})

2007-11-13 Thread XASD
function in place of value for property dosen't work. Thanks.

[jQuery] jQuery Form Plugin with prepended hidden fields

2007-11-13 Thread micha149
Hi! I prepend some new hidden fields to my form. After that I make the form to an ajaxform with the jQuery Form plugin. It seems to work, but I miss the new hidden fields... Somebody knows the Problem?

[jQuery] Re: Fix for BlockUI slowness

2007-11-13 Thread Matt Kruse
On Nov 13, 8:48 am, Mike Alsup [EMAIL PROTECTED] wrote: Good stuff, Matt. Thanks for sharing it. I think adding an option is a good idea. Another things I noticed - when blocking an element, it appends the blocking layer to the element itself. So, when I call block() before load() and the

[jQuery] Re: Easing cheat sheet demo page

2007-11-13 Thread Marshall Salinger
Thanks for the link! That is the best one that I have seen so far. RenatoCarvalho.com wrote: This Transition cheat sheet of Tweener is very good. You can see the curves and animations too. http://hosted.zeh.com.br/tweener/docs/en-us/misc/transitions.html -- Renato Carvalho Designer -

[jQuery] Re: [BUG-1.2.1] css(...,function(){ return ...;})

2007-11-13 Thread Peter E Higgins
On Tuesday 13 November 2007 11:26, XASD wrote: function in place of value for property dosen't work. Thanks. try using a closure? $('#foo').css(borderTop,(function(){ return 5px; })()); eg: return the string rather than an actual anon function pointer (as in the subject)

[jQuery] Re: [BUG-1.2.1] css(...,function(){ return ...;})

2007-11-13 Thread Matt Kruse
On Nov 12, 5:45 pm, Peter E Higgins [EMAIL PROTECTED] wrote: On Tuesday 13 November 2007 11:26, XASD wrote: function in place of value for property dosen't work. Is it expected to? try using a closure? $('#foo').css(borderTop,(function(){ return 5px; })()); First, that's not a closure,

[jQuery] Re: [BUG-1.2.1] css(...,function(){ return ...;})

2007-11-13 Thread Karl Swedberg
On Nov 13, 2007, at 12:54 PM, Matt Kruse wrote: On Nov 12, 5:45 pm, Peter E Higgins [EMAIL PROTECTED] wrote: On Tuesday 13 November 2007 11:26, XASD wrote: function in place of value for property dosen't work. Is it expected to? Good question, Matt. I thought only .attr() and .filter()

[jQuery] Re: Easing cheat sheet demo page

2007-11-13 Thread Glen Lipka
Holy cow. How could I have missed all these? That last one is great. I am going to append all of these to my page. I still like mine because it shows how a rectangle would animate, not just a ball or line. :) Glen On Nov 13, 2007 9:32 AM, Marshall Salinger [EMAIL PROTECTED] wrote: Thanks

[jQuery] OT: Somebody's spam filter is doing me wrong

2007-11-13 Thread Karl Swedberg
Hi everyone, Sorry to have to post this to the whole list, but I'm not sure how else to deal with this. Every time I post to this list, I get an auto-reply[1] from [EMAIL PROTECTED] telling me MDaemon has identified your message as spam. It will not be delivered. Could whoever belongs

[jQuery] Re: ANNOUNCE: tinyEdit v.1.0 plugin for jQuery released

2007-11-13 Thread Giant Jam Sandwich
There is certainly an opportunity for exploring validation. However, if you allow HTML, and do not moderate input, then you will always be open to an individual using invalid markup. I like to think of the plugin as more of providing a tool, and not a lock down mechanism. As strong as regular

[jQuery] Re: OT: Somebody's spam filter is doing me wrong

2007-11-13 Thread Rey Bango
Join the club Karl. :) Rey Karl Swedberg wrote: Hi everyone, Sorry to have to post this to the whole list, but I'm not sure how else to deal with this. Every time I post to this list, I get an auto-reply[1] from [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] telling me MDaemon has

[jQuery] queue issue

2007-11-13 Thread Mark
Hey, i've just got this working: div id=555 style=clear: both; background-color: red; overflow: auto; width: 100%; onMouseOver=highlight(this); div style=float: left; text-align: right; width: 15px;

[jQuery] jcarousel - resize height and width

2007-11-13 Thread steveoh
I have a project where I need to resize the images and jcarousel to match a PSD comp. Dimensions are 428/109 px and image sizes are 105/103px. I'm having issues getting jcarousel to look the same on all browsers of course. Was wondering if there's an easy way to resize jcarousel. It's such a cool

[jQuery] Re: [BUG-1.2.1] css(...,function(){ return ...;})

2007-11-13 Thread Peter E Higgins
On Tuesday 13 November 2007 12:54, Matt Kruse wrote: On Nov 12, 5:45 pm, Peter E Higgins [EMAIL PROTECTED] wrote: On Tuesday 13 November 2007 11:26, XASD wrote: function in place of value for property dosen't work. Is it expected to? probably not. try using a closure?

[jQuery] Re: jQuery.ajax POST is getting a 411 error.

2007-11-13 Thread [EMAIL PROTECTED]
Yup. We started actually sending information in the data hash, and things have worked well that way. That's what I get for misusing post requests. On Nov 9, 5:01 pm, noriaki [EMAIL PROTECTED] wrote: Hi, Doing some curls, I was able to send a post successfully the server by setting

[jQuery] Re: Nested getJSON

2007-11-13 Thread Penner, Matthew
I don't see anything physically wrong with a nested $.getJSON. I suspect either your code or the return results. I would extract the two callback functions into actual functions rather than just inline. Then I think you should be able to use Firebug's breakpoints on the callbacks to step

[jQuery] Re: Problems with multiple animations and timeouts

2007-11-13 Thread David Serduke
I'm not positive this is the problem but try putting a var in front of the nextTarget assignment. Right now it looks like a global variable in the code fragment you posted. var nextTarget = targetItem.next(); David On Nov 13, 8:18 am, serializer [EMAIL PROTECTED] wrote: Hi, I've set up a

[jQuery] Re: ANNOUNCE: tinyEdit v.1.0 plugin for jQuery released

2007-11-13 Thread Guy Fraser
Karl Swedberg wrote: Not sure what Brian's plans are for implementing different types of tags, but if you need that functionality now, there is another excellent plugin called jTagEditor: http://www.jaysalvat.com/jquery/jtageditor/ Oooh! That's almost exactly what I'm after - it looks

[jQuery] [JOB] PHP/MYSQL/Javascript Programmer - Lafayette, LA

2007-11-13 Thread ajlozier
Type: Full-Time Position Position: Web Developer Requirements: # Fluent in PHP (PHP5/object-oriented programming experience a plus) # Fluent in MYSQL # Proficient in Javascript/Ajax, HTML, CSS (understanding of standards-based coding/design) # Good understanding of Linux/Apache servers with

[jQuery] Re: OT: Somebody's spam filter is doing me wrong

2007-11-13 Thread MikeR
Me four. On Nov 13, 1:30 pm, Andy Matthews [EMAIL PROTECTED] wrote: Me three. Good to know that it's not the jQuery list itself marking me as spam. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Tuesday, November 13,

[jQuery] Re: OT: Somebody's spam filter is doing me wrong

2007-11-13 Thread Glen Lipka
Not me. Mine seems fine. (or is this email going to jinx me and cause me to get it???) Glen On Nov 13, 2007 3:43 PM, MikeR [EMAIL PROTECTED] wrote: Me four. On Nov 13, 1:30 pm, Andy Matthews [EMAIL PROTECTED] wrote: Me three. Good to know that it's not the jQuery list itself marking me

[jQuery] [OT] WYSIWYG for Safari

2007-11-13 Thread Jake McGraw
Hey all, sorry for the off topic post, but I must be going insane. I read that TinyMCE and FCKeditor now support Safari, but when I download the demos for both neither works when trying to use Safari 2.0.4. I'm looking for a VERY limited selection of functionality, specifically, Bold, Italic,

[jQuery] Re: [BUG-1.2.1] css(...,function(){ return ...;})

2007-11-13 Thread Karl Swedberg
On Nov 12, 2007, at 7:53 PM, Peter E Higgins wrote: Second, I can't think of any reason to do that over just using 5px as the value :) I am sure there a million shorthand jQuery ways to do it, but getting the value from the anon function (or any other function) seems a very common use

[jQuery] Re: OT: Somebody's spam filter is doing me wrong

2007-11-13 Thread Karl Swedberg
Well, I suppose it's some consolation that I'm not the only one getting these annoying auto-replies. Maybe I'll try using another email address and send a nice little note to [EMAIL PROTECTED] , who, it seems, has been deprived of our sage advice and deep wisdom because of some overzealous

[jQuery] jcarousel - changing size

2007-11-13 Thread steveoh
I'm struggling to get jcarousel to scale up to fit a design requirement. I'm trying to change the overall size to 428/109px and image sizes to 105/103px. Of course it works on some browsers and others the layout is rather ugly. Is there a trick to tweaking the layout to other sizes? Steveoh

[jQuery] persisted sortable divs...

2007-11-13 Thread sal
Hello All, So I've played with other libraries including mootools, and prototype/ scriptaculous quite a bit, but I've decided to move on to other adventures and try out jQuery. I've heard awesome things about it, in the CFMX community! Since I'm so new to the library, I thought I'd post a

[jQuery] Re: OT: Somebody's spam filter is doing me wrong

2007-11-13 Thread David Serduke
Getting spammed by anti-spam software. What's the world coming to? So can you mark it as spam to make it go away? Of course it could potentially drag down the whole internet as an infinite loop of anti- spam messages get sent back and forth! Or not. :) David

[jQuery] Drop box values display

2007-11-13 Thread blg002
I am trying to hide/show various options in a Sub-Category drop box when certain selections are made in a Category drop box. HTML: label for=bestPracticeCategoryIDCategory/label select name=bestPracticeCategoryID id=bestPracticeCategoryID option value=0 class=Please Select/option

[jQuery] Re: OT: Somebody's spam filter is doing me wrong

2007-11-13 Thread Flesler
It happened to me twice yesterday.. I was wondering whether I got some naughty trojan in my PC or what... I hope not :D Ariel Flesler On 13 nov, 18:30, Andy Matthews [EMAIL PROTECTED] wrote: Me three. Good to know that it's not the jQuery list itself marking me as spam. -Original

[jQuery] Re: Easing cheat sheet demo page

2007-11-13 Thread Guy Fraser
Glen Lipka wrote: 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 That and the related links really need a mention in the jQuery docs/wiki - superb resources, many thanks!! Guy

[jQuery] Re: Jquery rounded corners.

2007-11-13 Thread Eric Martin
I ran into a similar issue with how the plugin decided what background to use (i was actually using the modified version found at http://www.malsup.com/jquery/corner/). If you read Mike's documentation (see Pick Your Colors (or keep your borders)), you'll see that you can specify the color that

[jQuery] CSS based Sliding menu

2007-11-13 Thread Steve Finkelstein
Hi all, I'm sure jQuery has something similar, just haven't been able to find it. There's an article/example here, and I'm sorry if this is a common question here. I wasn't sure how to search for sliding menu thingy in the threads. :-) Where should I look within jquery for a similar effect of

[jQuery] Re: Scripts at the bottom of the page

2007-11-13 Thread Brandon Aaron
This is pretty much outside the scope of jQuery :/. You should bind events that have the potential to be triggered before the page is loaded within $(window).bind('load', fn). This will insure that the page is ready to accept your events ... otherwise the browser just isn't ready for you to

[jQuery] Move of namespace

2007-11-13 Thread howa
It is possible to completely move a particular plugin namespace into other one? e.g. if (typeof Company == undefined) { var Company = {}; } Company.form = {}; Company.form.validator = jQuery.validator; // Assume already loaded // Now I want to modify some of its internal value

[jQuery] slideUp weirdness when div content is a SWF file in FF

2007-11-13 Thread somnamblst
My slide down up occur seamlessly in all browsers when the Div content is an image file, smoothest is a CSS background image applied to empty divs. When I substituted Flash generated object code in the formerly empty divs, in FF the slidebar toggle div slides up under the slidebar, while

[jQuery] Re: CSS based Sliding menu

2007-11-13 Thread Cloudream
http://www.gmarwaha.com/blog/?p=7 On Nov 14, 10:54 am, Steve Finkelstein [EMAIL PROTECTED] wrote: Hi all, I'm sure jQuery has something similar, just haven't been able to find it. There's an article/example here, and I'm sorry if this is a common question here. I wasn't sure how to search

[jQuery] Re: .load appending content in IE7 only

2007-11-13 Thread jseller
// You could empty the element before loading it: // say loading some xhtml file in a node id 'content' var filename = somefile.xhtml; // or any URI $(#content).empty().load(filename); // - or another way $.get(filename,{}, function(data) {

[jQuery] Re: modifying a label when radio input selected

2007-11-13 Thread sperks
Apologies, if this comes through to the list twice (I waited a few hours before pushing again). Update. Here's the beautiful hunk of script that I have at the moment, but I'm wanting to add the class to the label based on whether it's associated input element is selected.

[jQuery] replace XPath functions for XML parsing

2007-11-13 Thread chrismarx
I'd like to keep up with the new jquery release and abandon my xpath code for parsing xml, but I haven't seen anything that will do what i need. Here's an example of what i did with xpath: //xml ?xml version=1.0 encoding=UTF-8? kml xmlns=http://earth.google.com/kml/2.0; Document

[jQuery] dynamically set timeout on a jQuery cycle plugin?

2007-11-13 Thread mdoc
Hi - I haven't found an easy way to speed-up/slow down the timeout speed of a running cycle of images. Can this be done? I've tried about a million differnt ways including modifying the plugin itself, but no luck yet. Stuff like: jQuery('#fastButton').click(function() { fx:

[jQuery] Re: modifying a label when radio input selected

2007-11-13 Thread sperks
Just to show that I'm doing some work on my own and not just fishing for solutions. I have the functionality working, but I'm wanting to target the label element based on whether the related input element is selected or not, rather than on click. The reason for this is that the radio input is

[jQuery] Re: CSS based Sliding menu

2007-11-13 Thread Steve Finkelstein
Thanks for the link Cloud, perfect. :-) On 11/13/07, Cloudream [EMAIL PROTECTED] wrote: http://www.gmarwaha.com/blog/?p=7 On Nov 14, 10:54 am, Steve Finkelstein [EMAIL PROTECTED] wrote: Hi all, I'm sure jQuery has something similar, just haven't been able to find it. There's an