[jQuery] Re: PeriodicalExecutor or $.executeEach

2007-05-08 Thread Emil Ivanov
Currently I'm kinda busy, and the executeEach method is working for me... When I have more time I might try it, but not right now, also I will help as much as I can. I think it's not much of writing, but designing, as JS can get nasty with closures and 'this'. Regards, Emil Ivanov Stosh

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-08 Thread Alexandre Plennevaux
i use thickbox, jScrollpane and few custom jquery functions here : HYPERLINK http://www.lab-au.comhttp://www.lab-au.com it's a temporary website, but the final website will make HEAVY use of jquery for ajax, layouting and visual effects, in a non obtrusive manner. stay tuned! _ From:

[jQuery] Re: PeriodicalExecutor or $.executeEach

2007-05-08 Thread Gilles (Webunity)
Actually there is allready something called periodical update plugin, you can check that out if you wish..

[jQuery] Re: ajax tabs: Where is remote-tab-1 coming from?

2007-05-08 Thread Klaus Hartl
[EMAIL PROTECTED] wrote: Hi, I'm trying to create some AJAX tabs that load a PHP page subject to a parameter. However, whenever I roll over my tabs, or click on one of them, they attempt to load something called remote-tab-n where n is the sequence of where the tab occurred. However, I

[jQuery] Unable to listen to elements appended by jQuery.

2007-05-08 Thread [EMAIL PROTECTED]
Well, im trying to append childrens to a div in a administration tool im developing. The problem is simple: I've added som html to this div like this: var toInsert = 'div class=menuBoxContentRow event name=eventRowHere'+ 'div class=eventTitle'+unescape($

[jQuery] JavaScript text nodes

2007-05-08 Thread Rodney Finn
Is it possible to take a node: window.onload = initAll; var nodeChangingArea; function initAll() { document.getElementsByTagName(form)[0].onsubmit = function() {return nodeChanger();} nodeChangingArea = document.getElementById(modifiable); } function addNode() { var inText =

[jQuery] Draggables not working while scrolling !

2007-05-08 Thread Kapil Dalwani
Hi all , I am not able to use Draggables div with scrolling .. the drop elements when scrolled doesn't change their position ... and the this element returned by onDrag returns the instance of the one which was already present .. i know the issue is solved in version 2.0 of jquery .. but due to

[jQuery] Re: New patch release for CFJS

2007-05-08 Thread Andy Matthews
Might I suggest that instead of releasing a new version every few days, just wait and release every few weeks. That way you get less releasing. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Christopher Jordan Sent: Monday, May 07, 2007 6:46

[jQuery] Re: Unable to listen to elements appended by jQuery.

2007-05-08 Thread Karl Swedberg
Hi Jakob, This is a good question that comes up quite a bit on this list. So I thought it might be a good idea to post a relevant excerpt of the forthcoming book, Learning jQuery, to the tutorial wiki: http://docs.jquery.com/Tutorials:AJAX_and_Events Jonathan Chaffer has already posted

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-08 Thread Rey Bango
Thanks for all of the submission guys. I added: - Univ. of West Georgia - Named by The Princeton Review as one of the Best Southeastern Colleges and one of America’s Best Value Colleges - Metalab - Official website of the Belgium digital design lab __ LAb[au] - SonSpring by Nath Smith -

[jQuery] Re: Featured Content or Cnet Carousel

2007-05-08 Thread tzmedia
Thanks for the suggestions, and making me think. I guess I'm not that partial to the animation, a classic fade would be fine. Like http://medienfreunde.com/lab/innerfade/ What I really like is the navigation at the bottom, I'm not sure how to do that with no fuss, that would highlight which slide

[jQuery] jCarousel 0.2.0 Beta

2007-05-08 Thread Jan Sorgalla
Hi, i've released the a new version of jCarousel yesterday. The source code is completely rewritten and i've tried to make it more flexible and to cover most of the features requested on the mailinglist. Online: http://sorgalla.com/projects/jcarousel-0.2.0-beta/ Related blog post:

[jQuery] Re: Migrating from old jQuery

2007-05-08 Thread Karl Swedberg
Hi Madison, After a quick glance, the only thing I see in the .js file that will break when you upgrade to the latest jQuery is .oneclick(function() {}). You'll need to change that to .one('click',function(){}). You might also want to change the $.get() to $.getJSON(). That way I think

[jQuery] Re: New / Updated Plugin - Focus Fields

2007-05-08 Thread Sean O
Sam, The demos don't seem to work for me in either FF2 or IE6 (?) SEAN O http://www.sean-o.com Sam Collett wrote: Haven't updated outlineTextInput's for a while (due to having issues with IE) - which is a plugin for adding outlines to text fields when they are given focus.

[jQuery] Re: New patch release for CFJS

2007-05-08 Thread Christopher Jordan
Good point, Andy. I'm new at this releasing stuff. :o) I think maybe I will hold back my next few changes (which haven't happened yet) so that I'm not releasing quite so often. Thanks for the advice! :o) Cheers, Chris Andy Matthews wrote: Might I suggest that instead of releasing a new

[jQuery] Re: create new element in DOM

2007-05-08 Thread joomlafreak
That's simple html. On May 8, 12:58 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: What data is being sent to the html function? On May 7, 5:13 pm, joomlafreak [EMAIL PROTECTED] wrote: I thought it is simple but why am I not able to achieve it, I don't understand, this is what I am

[jQuery] Re: Select Length Reference

2007-05-08 Thread Jeff Fleitz
// remove selected items from the #mySelect element var oRemoved = $(option:selected, oSelect).remove(); -- or -- var oRemoved = oSelect.find(option:selected).remove(); How would you identify an individual option index using this syntax? In other words if I wanted to check the value of

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-08 Thread Alexandre Plennevaux
Excellent ! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jan Sorgalla Sent: mardi 8 mai 2007 14:42 To: jQuery (English) Subject: [jQuery] jCarousel 0.2.0 Beta Hi, i've released the a new version of jCarousel yesterday. The source code is

[jQuery] Re: Select Length Reference

2007-05-08 Thread Dan G. Switzer, II
Jeff, // remove selected items from the #mySelect element var oRemoved = $(option:selected, oSelect).remove(); -- or -- var oRemoved = oSelect.find(option:selected).remove(); How would you identify an individual option index using this syntax? In other words if I wanted to check the

[jQuery] Re: New / Updated Plugin - Focus Fields

2007-05-08 Thread Sam Collett
On May 8, 3:12 pm, Sean O [EMAIL PROTECTED] wrote: Sam, The demos don't seem to work for me in either FF2 or IE6 (?) SEAN Ohttp://www.sean-o.com Did you click the text fields after clicking on one of the examples? There is only an outline when they have focus.

[jQuery] Re: fixing some smaller issues on a gallery with msie

2007-05-08 Thread Equand
anybody help please, it's the final thing i can't figure out... msie just doesn't work as expected ( On May 8, 7:17 am, Equand [EMAIL PROTECTED] wrote: http://nosite.ru/HU/ ok guys. as you can see, there are some problems with msie... and I don't have a clue... i think it has something to do

[jQuery] Re: New / Updated Plugin - Focus Fields

2007-05-08 Thread Bil Corry
Sean O wrote on 5/8/2007 7:12 AM: The demos don't seem to work for me in either FF2 or IE6 (?) Worked for me in FF2. For IE7 (not 6), it didn't appear to work, but it does work on a local test site. - Bil

[jQuery] Re: New / Updated Plugin - Focus Fields

2007-05-08 Thread Equand
Worked for me on ie 6 and ff 2 On May 8, 4:12 pm, Sean O [EMAIL PROTECTED] wrote: Sam, The demos don't seem to work for me in either FF2 or IE6 (?) SEAN Ohttp://www.sean-o.com Sam Collett wrote: Haven't updated outlineTextInput's for a while (due to having issues with IE) -

[jQuery] New plugin: simple character counter for textareas

2007-05-08 Thread thomasdeater
I've just released the first version of a simple plugin to add character counters/limiters to textarea elements. The demo and code can be found here: http://www.tomdeater.com/jquery/character_counter/

[jQuery] Re: New / Updated Plugin - Focus Fields

2007-05-08 Thread Rey Bango
I really like this Sam and it works perfect in IE7 as well. Equand wrote: Worked for me on ie 6 and ff 2 On May 8, 4:12 pm, Sean O [EMAIL PROTECTED] wrote: Sam, The demos don't seem to work for me in either FF2 or IE6 (?) SEAN Ohttp://www.sean-o.com Sam Collett wrote:

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-08 Thread Rey Bango
Very cool. Works great in FF 2 and IE7 [EMAIL PROTECTED] wrote: I've just released the first version of a simple plugin to add character counters/limiters to textarea elements. The demo and code can be found here: http://www.tomdeater.com/jquery/character_counter/ -- BrightLight

[jQuery] Re: New / Updated Plugin - Focus Fields

2007-05-08 Thread Sean O
Sam, That was it. Works in FF2 IE 6 here. I had thought there was a default initiation of focusFields() on page load of the demo... My eyes passed right over the click one of the examples above... SEAN O Sam Collett wrote: Did you click the text fields after clicking on one

[jQuery] Re: New / Updated Plugin - Focus Fields

2007-05-08 Thread Sam Collett
On May 8, 4:32 pm, Bil Corry [EMAIL PROTECTED] wrote: Sean O wrote on 5/8/2007 7:12 AM: The demos don't seem to work for me in either FF2 or IE6 (?) Worked for me in FF2. For IE7 (not 6), it didn't appear to work, but it does work on a local test site. - Bil It worked for me when I

[jQuery] Re: New / Updated Plugin - Focus Fields

2007-05-08 Thread Sam Collett
On May 8, 4:57 pm, Sean O [EMAIL PROTECTED] wrote: Sam, That was it. Works in FF2 IE 6 here. I had thought there was a default initiation of focusFields() on page load of the demo... My eyes passed right over the click one of the examples above... SEAN O Actually I just

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-08 Thread Sharique
Nice work On May 8, 6:42 pm, Jan Sorgalla [EMAIL PROTECTED] wrote: Hi, i've released the a new version of jCarousel yesterday. The source code is completely rewritten and i've tried to make it more flexible and to cover most of the features requested on the mailinglist.

[jQuery] Prevent spammers from catch e-mail addresses

2007-05-08 Thread [EMAIL PROTECTED]
Hi, Is there any method to prevent spammers from catching e-mail addresses on webpage links, other than the method described here: http://15daysofjquery.com/safer-mailto-links/8/ I was looking for an option to hide e-mail text links, but also the e- mail included in recipient form declarations.

[jQuery] Re: New / Updated Plugin - Focus Fields

2007-05-08 Thread Bil Corry
Sam Collett wrote on 5/8/2007 8:54 AM: For IE7 (not 6), it didn't appear to work, but it does work on a local test site. It worked for me when I tested in IE7 My bad, it works. I use IE7 only for local testing and forgot that I have scripting disabled for all other sites. Not

[jQuery] Text editer suite in jquery

2007-05-08 Thread Sharique
Is there any text editor (like FCKEditor) build using jquery. If not then why shouldn't build it. - Sharique

[jQuery] MooTools 1.1

2007-05-08 Thread Glen Lipka
Moo Tools 1.1 is out. Check out these demos. http://demos.mootools.net It's a great demo set. Clean and understandable. Very nice. I need to find the time to do each one of these in js.commadot.com and the jQuery equivelent. Glen

[jQuery] Re: MooTools 1.1

2007-05-08 Thread John Resig
I agree - they did a very nice job with the demos site. I'm sure we could arrange for something similar on the main site. --John On 5/8/07, Glen Lipka [EMAIL PROTECTED] wrote: Moo Tools 1.1 is out. Check out these demos. http://demos.mootools.net It's a great demo set. Clean and

[jQuery] Re: checkbox and .load

2007-05-08 Thread JimD
Hi Equand, THanks for the reply. I was testing in Firefox 2, but I created a plain example (Im reworking old legacy code) and I think the problem is with the page html. In a plain demo I dont get the refresh issue. Simple example !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-08 Thread Chris W. Parker
On Tuesday, May 08, 2007 8:48 AM [EMAIL PROTECTED] said: I've just released the first version of a simple plugin to add character counters/limiters to textarea elements. The demo and code can be found here: http://www.tomdeater.com/jquery/character_counter/ Great! Comment: I think you

[jQuery] Ajax Experience Refer-A-Friend

2007-05-08 Thread Glen Lipka
Ajax Experience 2007 has a refer a friend program. http://ajaxexperience.techtarget.com/west/html/faqs.html#Discounts You get $50 if a friend registers. Who is going? Meetup being planned by someone? Has anyone registered? I propose to register with John's promo code (if he has one) with the

[jQuery] Re: Append Content from links to a single div

2007-05-08 Thread Aaron
I definitley think it saved me $10 in time and energy! You all are the best! Look for my donation for sure! :) On May 7, 4:39 pm, Glen Lipka [EMAIL PROTECTED] wrote: On 5/7/07, Aaron [EMAIL PROTECTED] wrote: This seems to fix it! Thanks s much for the help everyone! You all are

[jQuery] Re: Append Content from links to a single div

2007-05-08 Thread Aaron
Just sent sent my donation! Thanks again for all the help! On May 7, 4:39 pm, Glen Lipka [EMAIL PROTECTED] wrote: On 5/7/07, Aaron [EMAIL PROTECTED] wrote: This seems to fix it! Thanks s much for the help everyone! You all are real life savers!!! THANKS On May 7, 2:40

[jQuery] Plugin authoring

2007-05-08 Thread Shelane Enos
I wrote a plugin, but I don't have a place where I can serve it - believe it or not. Is there somewhere on the jquery site plugins can be hosted? If not, would someone be willing to host it for me? It's a pretty simple plugin. Only 8k. I can create an example usage with Lasso or php.

[jQuery] Re: Ajax Experience Refer-A-Friend

2007-05-08 Thread John Resig
Actually, I'm going to be presenting, so I don't think I get a promo code - feel free to post yours, Glen, and reap the benefits! --John On 5/8/07, Glen Lipka [EMAIL PROTECTED] wrote: Ajax Experience 2007 has a refer a friend program.

[jQuery] $(#test:test) not working

2007-05-08 Thread Plamen Mishev
It seems that using a : sign in a CSS selector by id in jQuery does not work. Since having : is valid in ids and names according to w3c (http:// www.w3.org/TR/html4/types.html#type-cdata), I assume it is a bug in jQuery?

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-08 Thread Equand
sorry, can't find changes log, so what's new? On May 8, 3:42 pm, Jan Sorgalla [EMAIL PROTECTED] wrote: Hi, i've released the a new version of jCarousel yesterday. The source code is completely rewritten and i've tried to make it more flexible and to cover most of the features requested on

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-08 Thread joomlafreak
sweet little gadget! Joomlafreak On May 8, 1:00 pm, Chris W. Parker [EMAIL PROTECTED] wrote: On Tuesday, May 08, 2007 8:48 AM [EMAIL PROTECTED] said: I've just released the first version of a simple plugin to add character counters/limiters to textarea elements. The demo and code can

[jQuery] Re: $(#test:test) not working

2007-05-08 Thread Jake McGraw
I'm pretty sure this is not a bug, how do you think user agents handle the following: HTML: a href=myanchor:hoverA bad ID string/a CSS: a#myanchor:hover {color:#000;} Will the anchor be black automatically or only when a cursor hovers over it? According to CSS2 and above, colons are reserved

[jQuery] Re: $(#test:test) not working

2007-05-08 Thread Klaus Hartl
Jake McGraw wrote: I'm pretty sure this is not a bug, how do you think user agents handle the following: HTML: a href=myanchor:hoverA bad ID string/a CSS: a#myanchor:hover {color:#000;} Will the anchor be black automatically or only when a cursor hovers over it? According to CSS2 and

[jQuery] Re: $(#test:test) not working

2007-05-08 Thread Brandon Aaron
I believe this has been resolved in the latest SVN but I'm not for sure on that. In the mean time just use the attribute selector. $('[EMAIL PROTECTED]:test]') -- Brandon Aaron On 5/8/07, Klaus Hartl [EMAIL PROTECTED] wrote: Jake McGraw wrote: I'm pretty sure this is not a bug, how do you

[jQuery] Re: MooTools 1.1

2007-05-08 Thread Andy Matthews
Holy crap. Those demos are freaking awesome! _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Glen Lipka Sent: Tuesday, May 08, 2007 11:48 AM To: jquery-en@googlegroups.com Subject: [jQuery] MooTools 1.1 Moo Tools 1.1 is out. Check out these demos.

[jQuery] Re: Ajax Experience Refer-A-Friend

2007-05-08 Thread Glen Lipka
Ok, well, I will volunteer (unless anyone already has a promo code). Any refer-a-friend money, Ill forward to the jQuery foundation. Glen On 5/8/07, John Resig [EMAIL PROTECTED] wrote: Actually, I'm going to be presenting, so I don't think I get a promo code - feel free to post yours,

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-08 Thread thomasdeater
Per Chris's suggestion, I've made an update to the plugin. Now, you can specify that the container be an existing DOM element (e.g, #myContainer) or an element type that will be created and inserted in the DOM directly after the textarea (e.g., em). If nothing is specified, a span element will be

[jQuery] Re: Prevent spammers from catch e-mail addresses

2007-05-08 Thread Karl Swedberg
For a mailto link, you could do something like this: $(document).ready(function() { $('[EMAIL PROTECTED]').each(function() { var mailto = $(this).attr('href').replace(/\/?sendme [-:]/,'mailto:').replace(/(\[|\()at(\]|\))/g,'@'); $(this).attr('href', mailto); }); }); then, you

[jQuery] Re: MooTools 1.1

2007-05-08 Thread Sean Catchpole
On 5/8/07, John Resig [EMAIL PROTECTED] wrote: I agree - they did a very nice job with the demos site. I'm sure we could arrange for something similar on the main site. We should really push an effort to create as many cutpaste example as possible. People see, they grab, they edit. That's

[jQuery] .hover() on list element doesnt work properly

2007-05-08 Thread Arne-Kolja Bachstein
Hi there, I am trying to create a little flyout menu by doing this: $(ul.ul_inner/li).hover(function(){ $(ul, this).show(); },function(){ $(ul, this).hide(); }); It seems to work, but has one big problem: The ul inside of $(this) is hidden too early in IE6. The

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-08 Thread Ashish Agrawal
awesome, looks really good. On May 8, 6:42 pm, Jan Sorgalla [EMAIL PROTECTED] wrote: Hi, i've released the a new version of jCarousel yesterday. The source code is completely rewritten and i've tried to make it more flexible and to cover most of the features requested on the mailinglist.

[jQuery] Re: Thanks to Karl Swedberg During the Downtime

2007-05-08 Thread Sean Catchpole
Thanks Karl! ~Sean

[jQuery] Selector help - All inputs except radio buttons?

2007-05-08 Thread Brad Perkins
I currently have this? var params = $('input,select,textarea').serialize(); Is there a simple way to serialize all inputs expect for radio buttons?

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-08 Thread Jonathan Sharp
On 5/8/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Per Chris's suggestion, I've made an update to the plugin. Now, you can specify that the container be an existing DOM element (e.g, #myContainer) or an element type that will be created and inserted in the DOM directly after the textarea

[jQuery] Can I use css to set background image dynamically

2007-05-08 Thread joomlafreak
I am trying to use css(background-image,image) but it does not set the image as background. What am I doing wrong. here is the code. function changeit(imgnum){ $(.story).each(function(i){ var item = $(.story).eq(i); var image = $(.fullst).eq(i).html(); if ( item != ) {

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-08 Thread thomasdeater
On May 8, 3:15 pm, Jonathan Sharp [EMAIL PROTECTED] wrote: On 5/8/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I've got a slightly ugly bit of code where I check to see if the user has specified an existing element by ID for the container. I'd appreciate suggestions for cleaning this

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-08 Thread Ⓙⓐⓚⓔ
I remember reading the jQuery source, it's held in a div until it is put somewhere! On 5/8/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Strangely enough, $(em).parent().size() returns 1 when I wouldn't expect it to. For some reason, $(em).parent() returns [div]. I can't figure out why this

[jQuery] Re: Selector help - All inputs except radio buttons?

2007-05-08 Thread John Resig
Try this: var params = $(input,select,textarea).not(:radio).serialize(); On 5/8/07, Brad Perkins [EMAIL PROTECTED] wrote: I currently have this? var params = $('input,select,textarea').serialize(); Is there a simple way to serialize all inputs expect for radio buttons?

[jQuery] ratings plugin - link down - anyone got a copy?

2007-05-08 Thread Matt2012
Hi im looking for the latest version of the ratings plugin. The link for its is down, I guess thats part of the downtime problem http://john.jquery.com/plugins/rating/ (down) has anyone got a link I can use or maybe just post it here? thanks Matt.

[jQuery] Re: Selector help - All inputs except radio buttons?

2007-05-08 Thread Karl Swedberg
You could also do this: var params = $(':input:not(:radio)', 'form').serialize(); :) --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On May 8, 2007, at 4:00 PM, Rafael Santos wrote: var params = $('input,select,textarea').not(input [EMAIL

[jQuery] Can't set focus on element with DatePicker applied

2007-05-08 Thread Chris W. Parker
Hello, I'm trying to set focus on a form field but when I apply the DatePicker plugin* it stops working. But perhaps this doesn't really have anything to with DatePicker and is a js/jQuery thing. Here's the relevant code: js: $(#date).focus(); $(#date).datePicker(); HTML: input

[jQuery] Re: ratings plugin - link down - anyone got a copy?

2007-05-08 Thread Karl Swedberg
Here you go: http://www.learningjquery.com/src/plugins/rating Enjoy, --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On May 8, 2007, at 4:24 PM, Matt2012 wrote: Hi im looking for the latest version of the ratings plugin. The link for its is down, I

[jQuery] Re: Selector help - All inputs except radio buttons?

2007-05-08 Thread Jörn Zaefferer
Karl Swedberg schrieb: You could also do this: var params = $(':input:not(:radio)', 'form').serialize(); What about this: var params = $('form :input:not(:radio)').serialize(); The extra context parameter isn't necessary. -- Jörn Zaefferer http://bassistance.de

[jQuery] Re: Text editer suite in jquery

2007-05-08 Thread Sharique
I think jQuery is powerful enough to build such thing. On May 8, 9:19 pm, Sharique [EMAIL PROTECTED] wrote: Is there any text editor (like FCKEditor) build using jquery. If not then why shouldn't build it. - Sharique

[jQuery] Re: Selector help - All inputs except radio buttons?

2007-05-08 Thread Karl Swedberg
Ah yes! You're right (as usual). :) --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On May 8, 2007, at 4:54 PM, Jörn Zaefferer wrote: Karl Swedberg schrieb: You could also do this: var params = $(':input:not(:radio)', 'form').serialize(); What about

[jQuery] Re: Selector help - All inputs except radio buttons?

2007-05-08 Thread Brad Perkins
That does the trick! Thanks On May 8, 2:05 pm, John Resig [EMAIL PROTECTED] wrote: Try this: var params = $(input,select,textarea).not(:radio).serialize(); On 5/8/07, Brad Perkins [EMAIL PROTECTED] wrote: I currently have this? var params = $('input,select,textarea').serialize();

[jQuery] Re: Text editer suite in jquery

2007-05-08 Thread Leonardo K
http://scriptinverse.com/textify/ Beta version with several bugs. On 5/8/07, Sharique [EMAIL PROTECTED] wrote: I think jQuery is powerful enough to build such thing. On May 8, 9:19 pm, Sharique [EMAIL PROTECTED] wrote: Is there any text editor (like FCKEditor) build using jquery. If not

[jQuery] Re: New plugin: simple character counter for textareas

2007-05-08 Thread thomasdeater
On May 8, 4:11 pm, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: I remember reading the jQuery source, it's held in a div until it is put somewhere! I wonder if $(elem).parent().parent().size() == 0 is the best/only option then for determining whether $(elem) is a node in the HTML document. Any other

[jQuery] Form plugin shows just result

2007-05-08 Thread wyo
I'm playing around with the form plugin yet when I press the submit button only the result (in my case true is shown afterwards. The full form is gone. My code is rather simple script type=text/javascript $(document).ready(function() { var options = { beforeSubmit:

[jQuery] Re: ratings plugin - link down - anyone got a copy?

2007-05-08 Thread Matt2012
thanks much appreciated! On 8 May, 21:46, Karl Swedberg [EMAIL PROTECTED] wrote: Here you go: http://www.learningjquery.com/src/plugins/rating Enjoy, --Karl _ Karl Swedbergwww.englishrules.comwww.learningjquery.com On May 8, 2007, at 4:24 PM, Matt2012 wrote: Hi im

[jQuery] Trouble adding HTML, passing validation

2007-05-08 Thread [EMAIL PROTECTED]
Hi, I have this block of JQuery $(document).ready( function () { doTDListBehavior(); $('#addNewTDItem').click( function() { $('#todoList').append(lt;div class=quot;sidebarToDoquot;gt;lt;table cellpadding=quot;0quot;

[jQuery] Re: Text editer suite in jquery

2007-05-08 Thread Aaron Heimlich
On 5/8/07, Leonardo K [EMAIL PROTECTED] wrote: http://scriptinverse.com/textify/ Beta version with several bugs. Like not working at all in Firefox 2.0.0.3 -- Aaron Heimlich Web Developer [EMAIL PROTECTED] http://aheimlich.freepgs.com

[jQuery] Re: Trouble adding HTML, passing validation

2007-05-08 Thread Jake McGraw
Yes, two methods: 1) Use the src attribute for the script tag and keep JavaScript out of your XHTML documents. or 2) Use a commented out ![CDATA[ ]] tag to indicate sections of code the validator should skip over, like: script type=text/javascript // ![CDATA[

[jQuery] ajax tabs: Making the tab contain more than just text

2007-05-08 Thread [EMAIL PROTECTED]
Hi, I want my tab to consist of both text, and a graphic (which will serve as a Delete Tab function). However, I discovered that trying to add in the graphic button does more harm than good (in other words tabs do not display or function properly). Here's what I did: div id=container ul li

[jQuery] Re: Can't set focus on element with DatePicker applied

2007-05-08 Thread Bil Corry
Chris W. Parker wrote on 5/8/2007 1:00 PM: $(#date).focus(); $(#date).datePicker(); Have you tried reversing it? $(#date).datePicker(); $(#date).focus(); - Bil

[jQuery] Re: Form plugin shows just result

2007-05-08 Thread Aaron Heimlich
On http://www.orpatec.ch/termola/index.php?page=contact.php Firebug gives me the following error: validateInput is not defined http://www.orpatec.ch/termola/contact.php?page=contact.php Line 30 On 5/8/07, wyo [EMAIL PROTECTED] wrote: I'm playing around with the form plugin yet when I press

[jQuery] Fisheye menu on left or right of screen?

2007-05-08 Thread Shane
Hi everyone, Wondering if someone more knowledgeable than me can help me to get the Fisheye interface element working on the left or right of the screen, rather than top and bottom. Thanks, Shane.

[jQuery] Re: Plugin authoring

2007-05-08 Thread Shelane
Since there were no takers, I created space on Google code. It's a bit of an overkill, but oh well. http://code.google.com/p/jqueryselectcombo/ A jQuery plugin for populating data of a select item from results of another select item. A Select Combo is setting the values of a select element

[jQuery] Re: Trouble adding HTML, passing validation

2007-05-08 Thread Karl Rudd
The easiest solution is to put that block of code into a seperate JavaScript file. The only other solution I can think of is to use one of the DOM Creation plugins (such as http://mg.to/2006/02/27/easy-dom-creation-for-jquery-and-prototype ) and build the elements up that way. This is because

[jQuery] Re: Can I use css to set background image dynamically

2007-05-08 Thread Karl Rudd
It should work. What end up in image? It should be a URL (relative to the page). Karl Rudd On 5/9/07, joomlafreak [EMAIL PROTECTED] wrote: I am trying to use css(background-image,image) but it does not set the image as background. What am I doing wrong. here is the code. function

[jQuery] Re: Can I use css to set background image dynamically

2007-05-08 Thread Evan
You might also want to try 'backgroundImage' instead of 'background- image' On May 9, 8:22 am, Karl Rudd [EMAIL PROTECTED] wrote: It should work. What end up in image? It should be a URL (relative to the page). Karl Rudd On 5/9/07, joomlafreak [EMAIL PROTECTED] wrote: I am trying to

[jQuery] Re: Can I use css to set background image dynamically

2007-05-08 Thread joomlafreak
It is url of image relative to this file. Pls see this url http://www.joomlaprodigy.com/test/jquery/mod_contentsliderjp.php thanks for your help. On May 8, 6:22 pm, Karl Rudd [EMAIL PROTECTED] wrote: It should work. What end up in image? It should be a URL (relative to the page). Karl Rudd

[jQuery] Re: .hover() on list element doesnt work properly

2007-05-08 Thread Karl Rudd
This is usually a problem with block links in IE ( http://www.brunildo.org/test/IEABlock.html ). Check if the list item actually hasLayout (should be -1). If not then try setting a width or a height: 1% in the CSS. Karl Rudd On 5/9/07, Arne-Kolja Bachstein [EMAIL PROTECTED] wrote: Hi there,

[jQuery] Re: Selector help - All inputs except radio buttons?

2007-05-08 Thread Brad Perkins
Thanks everyone! -- Brad On May 8, 2:54 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Ah yes! You're right (as usual). :) --Karl _ Karl Swedbergwww.englishrules.comwww.learningjquery.com On May 8, 2007, at 4:54 PM, Jörn Zaefferer wrote: Karl Swedberg schrieb: You

[jQuery] Re: Selector help - All inputs except radio buttons?

2007-05-08 Thread Brad Perkins
Rafael, That is what I had in mind, but appears to filter out non-radio input fields. On May 8, 2:00 pm, Rafael Santos [EMAIL PROTECTED] wrote: var params = $('input,select,textarea').not([EMAIL PROTECTED]).serialize(); 2007/5/8, Brad Perkins [EMAIL PROTECTED]: I currently have this?

[jQuery] [ANN] New plugin - selectCombo

2007-05-08 Thread Shelane
http://jqueryselectcombo.googlecode.com/files/jquery.selectCombo.js A jQuery plugin for populating data of a select item from results of another select item. A Select Combo is setting the values of a select element based on the user's choice of the source select element. As a jQuery plugin, it

[jQuery] Re: Plugin authoring

2007-05-08 Thread Christopher Jordan
It's a wiki... you can add it yourself. that's what I did. :o) Chris Shelane wrote: Since there were no takers, I created space on Google code. It's a bit of an overkill, but oh well. http://code.google.com/p/jqueryselectcombo/ A jQuery plugin for populating data of a select item from

[jQuery] Re: Plugin authoring

2007-05-08 Thread Shelane Enos
Done. Thanks. On 5/8/07 3:58 PM, Christopher Jordan [EMAIL PROTECTED] wrote: It's a wiki... you can add it yourself. that's what I did. :o) Chris Shelane wrote: Since there were no takers, I created space on Google code. It's a bit of an overkill, but oh well.

[jQuery] Re: Trouble adding HTML, passing validation

2007-05-08 Thread Karl Rudd
Ah yes, good catch Jake. I'd forgotten about that. Karl Rudd On 5/9/07, Jake McGraw [EMAIL PROTECTED] wrote: Yes, two methods: 1) Use the src attribute for the script tag and keep JavaScript out of your XHTML documents. or 2) Use a commented out ![CDATA[ ]] tag to indicate sections of code

[jQuery] Re: Text editer suite in jquery

2007-05-08 Thread FD
The latest version of WYMeditor is using JQuery (JQuery version just reached alpha 1) http://www.wymeditor.org/en/ demo: http://demo.wymeditor.org/ Different approach to FCK et al. but one that I personally think is more useful for CMS type editing. Looks promising anyway. On May 9, 2:19 am,

[jQuery] Re: datePicker v2 beta

2007-05-08 Thread Will
Overall, I think the new date picker and jquery are really awesome! I do have one comment though. I find the date parsing logic a little too strict. If I use format mm/dd/ and I type in 5/1/2007, it's not going to parse correctly (code in date.js:440). This causes the calendar to not

[jQuery] Re: Can I use css to set background image dynamically

2007-05-08 Thread Karl Swedberg
not sure what var image = $(.fullst).eq(i).html(); returns, but the 'backgroundImage' (or 'background-image'; either one is fine) value should look something like 'url(path/to/image.jpg)' --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On May 8, 2007,

[jQuery] Re: Can I use css to set background image dynamically

2007-05-08 Thread joomlafreak
Got it. thanks a lot. It was so silly of me to miss using url. thanks again. On May 8, 7:53 pm, Karl Swedberg [EMAIL PROTECTED] wrote: not sure what var image = $(.fullst).eq(i).html(); returns, but the 'backgroundImage' (or 'background-image'; either one is fine) value should look something

[jQuery] Re: Can I use css to set background image dynamically

2007-05-08 Thread Karl Swedberg
heh. I only mentioned it because it happened to me recently, too. ;-) --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On May 8, 2007, at 7:59 PM, joomlafreak wrote: Got it. thanks a lot. It was so silly of me to miss using url. thanks again. On May 8,

[jQuery] Re: Can I use css to set background image dynamically

2007-05-08 Thread joomlafreak
I really admire your honesty. I was feeling so stupid and was thinking people would label me a jerk after reading my post for this stupidity. But after such an honest admittance from you I think it was not such a big deal. Things like this can happen :). I apprecite and thank again for our

[jQuery] AutoExec

2007-05-08 Thread Mario Moura
Hi Folks How can I force my JQuery script run? After my Html page is loaded I have some scripts in the middle of DOM (like I need) (because is generated from some db_query) script $(document).ready(function(){ $(markup02).append(something); $(img).attr({title:something}); }); /script My

  1   2   >