[jQuery] Regular Expressions

2006-12-28 Thread himynameiznate
This may have been answered somewhere, but alas, I cannot find it. I would like to use a regular expression to filter through certain dom elements, but Im not sure if jQuery takes regex. Also, it might be possible with attribute selectors, but Im not sure how. I want to grab all divs with an ID t

Re: [jQuery] AJAX problems - ajaxSubmit Form-PlugIn

2006-12-28 Thread Olaf Bosch
Mike Alsup schrieb: >> 1. the script duplicates the formsheet of "Eintragen" when you open and >> close it again and again.. > > Olaf, > > It looks like you're returning the entire HTML document in both the > IFrame and the return from the form submit? For the form submit > (save.php) try return

[jQuery] dynamic plugin loading

2006-12-28 Thread Jip
Hello all, this is my first posting, although I've been watching you for some time :) I'm trying to develope a small piece for dynamic loading in jquery, wich loads the .js and .css source files on the fly without any special markup in the html page. Probably you've seen this before (dojo.require

[jQuery] Auto scrolling the page to a specific point - like anchor links with animation

2006-12-28 Thread Andy Matthews
I've seen some sites (not sure if they're jQuery powered or not) that have a page scroll triggered where the window auto-scrolls down to a certain point on the page. Sort of link using an anchor link, but you can actually see the page moving. I'm wanting to do that as part of a form I'm working on

[jQuery] Clearing all form field values

2006-12-28 Thread Andy Matthews
I'm going to be submitting a form via AJAX and I'd like to be able to clear all of the fields afterwards. I could obviously do it by referencing each field manually, but I'm wondering if it's possible to do something like this: $('#myForm').clearFields(); or something to that effect. I just want t

Re: [jQuery] Auto scrolling the page to a specific point - like anchor links with animation

2006-12-28 Thread David Duymelinck
Andy Matthews schreef: > I've seen some sites (not sure if they're jQuery powered or not) that have a > page scroll triggered where the window auto-scrolls down to a certain point > on the page. Sort of link using an anchor link, but you can actually see the > page moving. > it's a part of the i

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Kelvin Luck
Does this work (presuming the form has an id of myForm)? $('#myForm')[0].reset(); Andy Matthews wrote: > I'm going to be submitting a form via AJAX and I'd like to be able to clear > all of the fields afterwards. I could obviously do it by referencing each > field manually, but I'm wondering if

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Guntur N. Sarwohadi
from what i know, the closest is using the 'each' method.. like: $("form") .children() .each(function() { $(this).val(""); }); or something close to that. hope that helps [g] On 12/28/06, Andy Matthews <[EMAIL PROTECTED]> wrote: I'm going to be submitting a form via AJAX and I'd like to

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Dave Methvin
> I just want to reset all fields to their original values. Does the standard form.reset method do what you want? $('#myForm')[0].reset(); ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Guntur N. Sarwohadi
*doh*.. i should've thought that way.. heheh.. that should definately work i get too jquery oriented some times ^^ [g] On 12/28/06, Kelvin Luck <[EMAIL PROTECTED]> wrote: Does this work (presuming the form has an id of myForm)? $('#myForm')[0].reset(); Andy Matthews wrote: > I'm going to be

Re: [jQuery] Auto scrolling the page to a specific point - like anchor links with animation

2006-12-28 Thread Andy Matthews
Excellent! Thank you David! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of David Duymelinck Sent: Thursday, December 28, 2006 8:05 AM To: jQuery Discussion. Subject: Re: [jQuery] Auto scrolling the page to a specific point - like anchor links with animatio

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Andy Matthews
Haven't tried it. I didn't know it was there. Thanks guys! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Dave Methvin Sent: Thursday, December 28, 2006 8:07 AM To: 'jQuery Discussion.' Subject: Re: [jQuery] Clearing all form field values > I just want t

Re: [jQuery] dynamic plugin loading

2006-12-28 Thread Mike Alsup
> For example, in $(document).ready( ... > jQuery.require('jquery.accordion'); > $('#myaccordion').Accordion(); > > jq.getScript(src); > // here it should wait, but how? That won't wait, obviously, because it's an async call. You either need to use synchrnous ajax (like dojo

[jQuery] googlemaps plugin

2006-12-28 Thread Vincent Majer
Hi, I'm working on the plugin for jquery : http://olbertz.de/jquery/googlemap.html it's really great with firefox.. but it doesn't work in IE... I've made some tests and it seems that the problem comes from this foreach : locations.forEach(function(element, index, array) { var m

Re: [jQuery] Auto scrolling the page to a specific point - like anchor links with animation

2006-12-28 Thread Andy Matthews
Okay... I've downloaded the ifxscroll.js file and I've set it up after the call to jQuery.js in my code. I've got this line: $('#ST').ScrollTo(800); And it's giving me this error: jQuery.iUtil is null or not an object. I'm not using Prototype so I haven't reassigned the $ call. Any ideas anyon

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Jörn Zaefferer
Guntur N. Sarwohadi schrieb: > >from what i know, the closest is using the 'each' method.. like: > > $("form") > .children() > .each(function() { > $(this).val(""); > }); That could also be written as: $("form :input").val(""); A bit more useful in case you need to empty all fields, not only

Re: [jQuery] Transmit form contents, receive response...best method?

2006-12-28 Thread Andy Matthews
Mike... I feel that it's easier to simply return the HTML string for the element that will get appended. Your example seems to return JSON (a javascript object right?). What are your thoughts on that? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mike Al

Re: [jQuery] Auto scrolling the page to a specific point - like anchor links with animation

2006-12-28 Thread David Duymelinck
Andy Matthews schreef: > Okay... > > I've downloaded the ifxscroll.js file and I've set it up after the call to > jQuery.js in my code. I've got this line: > > $('#ST').ScrollTo(800); > > And it's giving me this error: > > jQuery.iUtil is null or not an object. > > iutil is a different js file.

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Mike Alsup
> That could also be written as: $("form :input").val(""); I wouldn't recommend that because :input will grab all inputs *including* type==submit and type==button. Clearing those is probably not what you'd want to do. I think maybe the form plugin needs to provide clearForm and resetForm methods

Re: [jQuery] Auto scrolling the page to a specific point - like anchor links with animation

2006-12-28 Thread Andy Matthews
Ah...so I need to have that one in addition to the scroll plugin? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of David Duymelinck Sent: Thursday, December 28, 2006 8:46 AM To: jQuery Discussion. Subject: Re: [jQuery] Auto scrolling the page to a specific p

Re: [jQuery] Auto scrolling the page to a specific point - like anchor links with animation

2006-12-28 Thread Karl Swedberg
Hi Andy, I think the ifxscroll.js is dependent on another component of the Interface plugin, so grabbing that single .js file won't work. Instead, go to http://interface.eyecon.ro/download and use the interactive download builder. When you go to save it, the file name should default to in

Re: [jQuery] dynamic plugin loading

2006-12-28 Thread Felix Geisendörfer
Alright, I've been working on this kind of stuff quite intensively a while back. The good news is, all major browsers (ie 6, ff 1.5+, opera 9) can include JS on the fly and trigger a callback function after that is done. In your case you would only need to modify your plugin like this: ---

Re: [jQuery] Auto scrolling the page to a specific point - like anchor links with animation

2006-12-28 Thread Andy Matthews
Hmmm... I'm no longer getting an error, but it still doesn't appear to be working. I copied all of the files from the demo of the scroll plugin and placed them in my code, in the same order. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of David Duymelinck

Re: [jQuery] Transmit form contents, receive response...best method?

2006-12-28 Thread Mike Alsup
> I feel that it's easier to simply return the HTML string for the element > that will get appended. Your example seems to return JSON (a javascript > object right?). What are your thoughts on that? It all depends on what you need to do with the returned data. If HTML makes things easier for you

Re: [jQuery] Auto scrolling the page to a specific point - like anchor links with animation

2006-12-28 Thread Karl Swedberg
Andy, again, try getting it from the download page. just add the scrollto component and then click the save download link. On the other hand, the problem now could be that you're not using the correct selector expression. Could you post a link to a page that you're working on? I got the s

[jQuery] googlemaps plugin with IE ?

2006-12-28 Thread vince
Hi, I'm working on the plugin for jquery : http://olbertz.de/jquery/googlemap.html it's really great with firefox.. but it doesn't work in IE... I've made some tests and it seems that the problem comes from this foreach : locations.forEach(function(element, index, array) { var

Re: [jQuery] Auto scrolling the page to a specific point - likeanchor links with animation

2006-12-28 Thread Andy Matthews
Karl... When I try to use the interactive builder, I select the FX - Scroll plugin, click the "save your selection" link, then save the file. But when I open it, the file is blank except for the information at the top. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTEC

Re: [jQuery] Transmit form contents, receive response...best method?

2006-12-28 Thread Andy Matthews
Ah...I see... That makes perfect sense. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mike Alsup Sent: Thursday, December 28, 2006 9:08 AM To: jQuery Discussion. Subject: Re: [jQuery] Transmit form contents, receive response...best method? > I feel tha

Re: [jQuery] googlemaps plugin with IE ?

2006-12-28 Thread David Duymelinck
vince schreef: > > locations.forEach seems to cause problems with IE... > Is there a workaround ? > > thanks in advance > maybe this can help http://www.ejball.com/EdAtWork/CommentView,guid,c2d0f53f-afc7-4831-b60e-f4354ae3f7fa.aspx mozilla is a few versions of javascript ahead of IE, it works

Re: [jQuery] dynamic plugin loading

2006-12-28 Thread París Prieto , José Ignacio
>> But if you only need to include/require other JS files once at the beginning >> and not in the callback functions for inclusions, then you should be able to >> use my method. That's the case, the callback should be enough for me. I'll try this and keep you informed. Many thanks Jip

Re: [jQuery] googlemaps plugin with IE ?

2006-12-28 Thread vince
thanks for the link ... But i wonder how i can rewrite the code with this ForEach function.. it's not the same syntax ? sorry but i'm not very good with javascript. here is the code : locations.forEach(function(element, index, array) { var marker = new GMarker(new GLatLng(element.lat

Re: [jQuery] dynamic plugin loading

2006-12-28 Thread Christof Donat
Hi, > I'm trying to develope a small piece for dynamic loading in jquery, wich > loads the .js and .css source files on the fly without any special markup > in the html page. For .js files you can use jspax (www.jspax.org). I use it to load jQuery and plugins on demand (actually I made it for th

[jQuery] Getting the val() or html() of an FCKEditor field using jQuery

2006-12-28 Thread Andy Matthews
I thought this would be fairly straightforward but it appears to be causing me some distress. I need to get the value of an FCKEditor field for transmission using AJAX. However, when I reference the fields ID and call the val() method, I get a blank result when there is definitely content in it. Ca

Re: [jQuery] googlemaps plugin with IE ?

2006-12-28 Thread David Duymelinck
vince schreef: > thanks for the link ... > But i wonder how i can rewrite the code with this ForEach function.. it's > not the same syntax ? sorry but i'm not very good with javascript. > > here is the code : > > > link = ' # '+element.name+' '; > $('p#location_list').append(li

Re: [jQuery] googlemaps plugin with IE ?

2006-12-28 Thread vince
Thanks very much, it works.. !! -- View this message in context: http://www.nabble.com/googlemaps-plugin-with-IE---tf2890722.html#a8076808 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing list discuss@jquery.com http://jq

Re: [jQuery] Auto scrolling the page to a specific point - likeanchor links with animation

2006-12-28 Thread Karl Swedberg
You're right. Sorry about that, Andy. Tried to attach a tested copy of scrollto.js, but the mailserver rejected it. So, you can find it here now: http://www.karlswedberg.com/scripts/scrollto.js Hope that helps. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.c

Re: [jQuery] .load() not executing javascript code in IE

2006-12-28 Thread Surge Mitchell
Thanks a lot. You code fixed it in IE but broke firefox, but it using your code I made it so that I could determine if the php script generating the code should add script tags on it when it does its request and had it do a .load function instead. function MyRe

Re: [jQuery] .load() not executing javascript code in IE

2006-12-28 Thread Surge Mitchell
It should, but it isn't. malsup wrote: > >> Internet Explorer wont execute dynamic code in that manner. > > Sure it will, with the help of jQuery. $().load has logic to find and > eval script in the returned text. > > ___ > jQuery mailing list > di

Re: [jQuery] dynamic plugin loading

2006-12-28 Thread Michael Geary
If you're just trying to load a stylesheet dynamically, all you need to do is this: function addSheet( url, doc ) { doc = doc || document; var link = doc.createElement( 'link' ); link.rel = 'stylesheet'; link.type = 'text/css'; link.href = url; d

[jQuery] Matching a link's href value to another link on the page

2006-12-28 Thread Chaim
Hi Everyone, Here's what I'd like to able to do (simplified), although I can't seem to figure out how to do it. If the link in "matchThis" has the same href as the link in "navigation," how can I select the link with the matching href in "navigation? " for the code: I want this link, because

Re: [jQuery] Auto scrolling the page to a specific point -likeanchor links with animation

2006-12-28 Thread Andy Matthews
Thank you Karl...is this the only thing I need to include (other than jQuery)? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Karl Swedberg Sent: Thursday, December 28, 2006 10:52 AM To: jQuery Discussion. Subject: Re: [jQuery] Auto scrolling the

Re: [jQuery] Matching a link's href value to another link on the page

2006-12-28 Thread Marc Jansen
Hi Chaim, Chaim schrieb: > If the link in "matchThis" has the same href as the link in > "navigation," how can I select the link with the matching href in > "navigation? " > > for the code: > > I want this link, because the href matches > I don't want this Link > I don't want this Link > I don'

Re: [jQuery] Matching a link's href value to another link on the page

2006-12-28 Thread Yehuda Katz
Try $("#navigation [EMAIL PROTECTED]" + $("#matchThis").attr("href") + "]") On 12/28/06, Chaim <[EMAIL PROTECTED]> wrote: Hi Everyone, Here's what I'd like to able to do (simplified), although I can't seem to figure out how to do it. If the link in "matchThis" has the same href as the link in

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Yehuda Katz
$("form :input:not([EMAIL PROTECTED]):not(button)").val("") I personally prefer reset() because there's rarely a case where you're setting default values that you don't intend to be the default value ;) -- Yehuda On 12/28/06, Mike Alsup <[EMAIL PROTECTED]> wrote: > That could also be written

[jQuery] Getting the val() or html() of an FCKEditor field using jQuery

2006-12-28 Thread Andy Matthews
Don't think this came through the first time -- I thought this would be fairly straightforward but it appears to be causing me some distress. I need to get the value of an FCKEditor field for transmission using AJAX. However, when I reference the fields ID and call the val() method, I

Re: [jQuery] dynamic plugin loading

2006-12-28 Thread París Prieto , José Ignacio
That was my first attempt, but, as Felix suggested, you don't know when the script has ended loading since it's an async load. The callback solution did the trick. Here you have the final code. It loads .js and .css in one call, and seems to work in FF and IE. You can specify base directories fo

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Mike Alsup
> I personally prefer reset() because there's rarely a case where you're > setting default values that you don't intend to be the default value ;) I definitely agree with that. > $("form :input:not([EMAIL PROTECTED]):not(button)").val("") But not that! That will ignore type=text inputs. I'm go

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Dave Methvin
> $("form :input:not([EMAIL PROTECTED]):not(button)").val("") That will clobber the values on radio buttons and checkboxes. Here's another vote for form.reset(). ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] dynamic plugin loading

2006-12-28 Thread Michael Geary
> From: Michael Geary > > If you're just trying to load a stylesheet dynamically, all > you need to do is this... Just to be clear, I wasn't disparaging jsPax! It just depends on whether you need a full-featured package system or a simple loading function. -Mike _

[jQuery] Visual jQuery announcement

2006-12-28 Thread Yehuda Katz
In addition to updating the documentation in conjunction with 1.1, I will be doing the following for January 14: * Making sure all svn plugins are documented and included on the site * Switching to dl-based navigation * Adding a live-search filter. I'm also working on a first release of jQuery o

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Andy Matthews
The problem for me (in this case) is that the few fields that need to be transmitted via AJAX (and then reset) are part of a larger form that I do NOT want to get reset. I might just have to do each field manually. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

[jQuery] Splitter

2006-12-28 Thread Dave Methvin
There was some discussion a month or two ago about splitter widgets. Did anyone build one? ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Yehuda Katz
You could try putting a form within a form. I'm not sure how valid it is, but it definitely solves certain problems. -- Yehuda On 12/28/06, Andy Matthews <[EMAIL PROTECTED]> wrote: The problem for me (in this case) is that the few fields that need to be transmitted via AJAX (and then reset) a

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Andy Matthews
This is for a CMS so I'm not really that concerned with it validating (as long as it works). -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Yehuda Katz Sent: Thursday, December 28, 2006 1:02 PM To: jQuery Discussion. Subject: Re: [jQuery] Clearing

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Mike Alsup
> This is for a CMS so I'm not really that concerned with it validating (as > long as it works). Nested forms are not valid markup. I think it makes more sense to handle these special fields manually. Do they simply need to be cleared? If so, you'll be able to use the new clearForm method of th

Re: [jQuery] Auto scrolling the page to a specific point -likeanchor links with animation

2006-12-28 Thread Karl Swedberg
yep. include it after the jquery.js and it should do the trick. It's the only thing I needed (on a different site). --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Dec 28, 2006, at 12:11 PM, Andy Matthews wrote: Thank you Karl...is this the only thing

Re: [jQuery] jQuery Roadmap

2006-12-28 Thread Aaron Heimlich
http://jquery.com/blog/2006/12/27/the-path-to-11/ is the best thing I could find. There's also http://jquery.com/dev/upcoming/ On 12/29/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi everyone, With Yehuda mentioning the changes to Visual jQuery and the 1.1 release, I wondered if there wa

[jQuery] jQuery Roadmap

2006-12-28 Thread gerrytucker
Hi everyone, With Yehuda mentioning the changes to Visual jQuery and the 1.1 release, I wondered if there was a documented roadmap anywhere for future releases? Gerry___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery Roadmap

2006-12-28 Thread Christopher Jordan
"Roads? Where we're going... we don't need roads!" Sorry, I couldn't resist! :oP Cheers, Chris [EMAIL PROTECTED] wrote: Hi everyone, With Yehuda mentioning the changes to Visual jQuery and the 1.1 release, I wondered if there was a documented roadmap anywhere for future releases? Gerry

Re: [jQuery] msie closures syntax

2006-12-28 Thread Jonathan Sharp
On 12/27/06, moe <[EMAIL PROTECTED]> wrote: yep, it's for use with multiple elements, so that global attr()-stuff doesn't cut it. but fear not, Choan's helper function did it for me: $(this)[0].ontimer = setTimeoutH( function( mysrc, body, x, y ) { on( mysrc, body, x, y ) }, I think you can

[jQuery] jQuery Roadmap

2006-12-28 Thread gerrytucker
Jeez Aaron that was quick!!! Thanks a lot for that, I guess I should have realised there would be something on the blog, I just hadn't looked. Looks as though I've got a few changes to make to my code, but not too many. Gerry Emoticon3.gif Description: GIF image _

[jQuery] jQuery Roadmap

2006-12-28 Thread gerrytucker
Should there be a sat-nav version then?___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery Roadmap

2006-12-28 Thread Aaron Heimlich
On 12/29/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Jeez Aaron that was quick!!! [image: Winking smile emoticon] I was actually just about to read that blog entry when your message came (and yes, Yehuda's post prompted me to look for info on this too). Happy I could help. --Aaron -

Re: [jQuery] Clearing all form field values

2006-12-28 Thread Mike Alsup
> I think maybe the form plugin needs to provide clearForm and resetForm > methods and perhaps options to perform these functions automatically > upon successful submit. These change are now in. http://jquery.com/dev/svn/trunk/plugins/form/form.js?format=txt _

[jQuery] Help With Sortables

2006-12-28 Thread blemming
A little help please I have a sortable in and I want to be able to replace the content and then reload the sortable. It works fine using FireFox but IE allows for the item to be dragged but the sorting doesn't work. An example is here: http://brilliantretail.com/cases/sorttest/ Sort Test

Re: [jQuery] dynamic plugin loading

2006-12-28 Thread Christof Donat
Hi, > function addScript( url, doc ) { > doc = doc || document; > var script = doc.createElement( 'script' ); > script.type = 'text/javascript'; > script.charset = 'utf-8'; > script.src = url; > doc.getElementsByTagName('head')[0].appendChild( sc

[jQuery] jQuery Roadmap

2006-12-28 Thread gerrytucker
And two minutes afterwards I found it on ajaxian.com!!!___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] .load() not executing javascript code in IE

2006-12-28 Thread Kevin Pirkl
Nope... jQuery $.load() eventually makes a call to self.html(res.responseText) before attempting .evalScripts() but the problem with IE is that jQuery attr: for innerHTML will not accept script tags when attempting to assign it to the value of res.responseText. This following does not work in IE

Re: [jQuery] .load() not executing javascript code in IE

2006-12-28 Thread Kevin Pirkl
After a little debugging I found the correct way to get what you are trying to do or the jQuery way!!! Check out $.getScript (http://jquery.com/api/) as it passes "script" in the fourth parameter for AJAX get: and I think it would more than likely work for you are trying to do and then you wont

[jQuery] Should one announce something like that?

2006-12-28 Thread Olaf Bosch
Spam on http://jquery.com/dev/bugs/bug/417/ -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de www.akitafreund.de --- ___ jQuery mailing list discuss@jquery.com http://jquery.com/di

Re: [jQuery] Splitter

2006-12-28 Thread Paul Bakaus
What do you mean by splitter widgets? Like a split pane view? I have created something custom on that topic for several jQuery projects. Other than that, I did some "real" splitting: A explode effect on elements, that really splits the element itself. -Paul 2006/12/28, Dave Methvin <[EMAIL PROTE

Re: [jQuery] Splitter

2006-12-28 Thread Jörn Zaefferer
Dave Methvin schrieb: > There was some discussion a month or two ago about splitter widgets. Did > anyone build one? > I think Stefan Petre did something like that. -- Jörn Zaefferer http://bassistance.de ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Should one announce something like that?

2006-12-28 Thread John Resig
> Spam on > http://jquery.com/dev/bugs/bug/417/ Yeah, it sucks - we have Spam checks on the bug tracker now, but it's really really hard to delete spammy comments/bugs. Trac makes it very difficult to do this, for whatever reason. Now that the Spam checks are in place, I'll go back through and try

Re: [jQuery] Thickbox: Smoooooth scrolling with fixed positioning

2006-12-28 Thread Johan Sundström
On 9/13/06, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Hi all, > > I worked a bit on the thickbox script to improve it. What bothered me, > was that when scrolling the window the thickbox window is moved to stay > in the center, but that happens not smooth at all. > > So I changed it to use fixed pos

Re: [jQuery] Should one announce something like that?

2006-12-28 Thread Andy Matthews
My guess is that you could do a "WHERE comment LIKE '%whore%' and be in pretty good shape. ;) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of John Resig Sent: Thursday, December 28, 2006 4:33 PM To: jQuery Discussion. Subject: Re: [jQuery] Should one annou

Re: [jQuery] Splitter

2006-12-28 Thread Dave Methvin
> What do you mean by splitter widgets? Like a split pane view? Yep, similar to this: http://www.jackslocum.com/blog/examples/splitter3.htm I didn't see anything in Stefan's site that would do it. ___ jQuery mailing list discuss@jquery.com http://jque

Re: [jQuery] Help With Sortabe Reload in IE

2006-12-28 Thread blemming
anything... I"m really stuck and its messing up my day :( -- View this message in context: http://www.nabble.com/Help-With-Sortabe-Reload-in-IE-tf2892329.html#a8081358 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing list

Re: [jQuery] Splitter

2006-12-28 Thread gerrytucker
Dave, As a mere mortal I'm just surprised you haven't written one in between asking the question??!! ;-) BTW you wouldn't be THE Dave Methvin of PC Pitstop fame would you? Regards, Gerry - Original Message - From: "Dave Methvin" <[EMAIL PROTECTED]> To: "'jQuery Discussion.'" Sent:

Re: [jQuery] Should one announce something like that?

2006-12-28 Thread Christopher Jordan
Aw... dude! I didn't really understand this post to begin with, but I didn't originally scroll down to see the comments. Don't people have better things to do with their lives? Crudeness like that really gets under my skin. :o( Well, if anyone thinks of something brilliant to filter it out...

Re: [jQuery] Should one announce something like that?

2006-12-28 Thread Jonathan Sharp
On 12/28/06, Christopher Jordan <[EMAIL PROTECTED]> wrote: Aw... dude! I didn't really understand this post to begin with, but I didn't originally scroll down to see the comments. Don't people have better things to do with their lives? Crudeness like that really gets under my skin. :o( Well,

Re: [jQuery] Should one announce something like that?

2006-12-28 Thread Jonathan Sharp
Oh, also what is quantserve.com? It's near the bottom by google... -js On 12/28/06, Jonathan Sharp <[EMAIL PROTECTED]> wrote: On 12/28/06, Christopher Jordan <[EMAIL PROTECTED]> wrote: > > Aw... dude! I didn't really understand this post to begin with, but I > didn't originally scroll down t

Re: [jQuery] Should one announce something like that?

2006-12-28 Thread Jonathan Sharp
On 12/28/06, Jonathan Sharp <[EMAIL PROTECTED]> wrote: Oh, also what is quantserve.com? It's near the bottom by google... -js I ment to say, there's a script reference in the source near the bottom which sets some cookies and junk. -js ___ jQuery

Re: [jQuery] Should one announce something like that?

2006-12-28 Thread John Resig
That's just a tracking script that I'm testing out, along with Google Analytics. Don't worry about it. --John On 12/28/06, Jonathan Sharp <[EMAIL PROTECTED]> wrote: > On 12/28/06, Jonathan Sharp <[EMAIL PROTECTED]> wrote: > > Oh, also what is quantserve.com? It's near the bottom by google... > >

Re: [jQuery] Help With Sortabe Reload in IE

2006-12-28 Thread bander
Found the error. It's at line 56 in the uncompressed version of idrop.js. if (iEL.dropCfg.m == false) { iEL.dropCfg.p = jQuery.extend( jQuery.iUtil.getPosition(iEL), jQuery.iUtil.getSize(iEL) );//jQuery.iUtil.getPos(iEL); iEL.dropCfg.m = tru

Re: [jQuery] Getting the val() or html() of an FCKEditor field using jQuery

2006-12-28 Thread bander
Seems like more of a FCKEditor question to me. From their documentation ( http://wiki.fckeditor.net/Developer%27s_Guide/Javascript_API ): >From out of an external script: When placing the editor in the page, you give it an "instance name". To retrieve it, you must simply call the FCKeditorAPI.Ge

Re: [jQuery] Should one announce something like that?

2006-12-28 Thread Yehuda Katz
What about: $('div.comment,h3.change').each(function() { if ($(this).html().match(/phenter|whore|sex|fuck|nude|xxx|urlcutter|pharm/)) { $(this).remove() } }); Much more fun ;) -- Yehuda On 12/28/06, John Resig <[EMAIL PROTECTED]> wrote: That's just a tracking script that I'm tes

[jQuery] Very Cool Window Plugin

2006-12-28 Thread Rey Bango
This plugin is VERY cool: http://www.consulenza-web.com/jquery-floating-windows-plugin.dc-14.html The developer is Marco Pegoraro but I haven't seen him on the list. I'd like to see if the docs could be translated to English. Anyone know Marco? Rey... _

[jQuery] My First Plugin - Custom Select Box

2006-12-28 Thread blemming
Here is my first attempt at a plug-in. It is definitely in the early stage of development, but I thought I'd put it out here for you guys to rip apart (and hopefully provide a suggestions or two) Here it is => http://brilliantretail.com/cases/select/ Custom Select Plugin Let me know what you

Re: [jQuery] My First Plugin - Custom Select Box

2006-12-28 Thread bmsterling
Damn David, have you been looking at my computer!!! I was working on something like this because I get a lot of designs from my designers with a fancy select menu and I figured I create something with jquery to do what you did. Oh well, your's looks better then what I was doing. Nice job! -- V

[jQuery] Duplicating Events in a New Object

2006-12-28 Thread Michael Haggerty
I need to know how to copy all of the events from one object to another. Really getting stuck on this one. What I am trying to do is write a script that replaces an A tag with a bunch of clustered divs, and want to take the events from A tag (an onclick and some custom ones generated by jquery) an

Re: [jQuery] Splitter

2006-12-28 Thread Dave Methvin
> As a mere mortal I'm just surprised you haven't written > one in between asking the question??!! ;-) Well I started on one thinking it would be simple, but ran into some problems so I figured I'd ask if anyone else had solved them. As Douglas Crockford says, "The good thing about reinventing

Re: [jQuery] Duplicating Events in a New Object

2006-12-28 Thread blemming
Does this have anything to do with my plugin? Michael Haggerty-4 wrote: > > I need to know how to copy all of the events from one object to another. > Really getting stuck on this one. > > What I am trying to do is write a script that replaces an A tag with a > bunch > of clustered divs, and w

Re: [jQuery] Duplicating Events in a New Object

2006-12-28 Thread Michael Haggerty
Heh... sorry, just needed the address, hit reply and did not remove the old message. M > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > Behalf Of blemming > Sent: Thursday, December 28, 2006 11:13 PM > To: discuss@jquery.com > Subject: Re: [jQuery] Duplicating

Re: [jQuery] Duplicating Events in a New Object

2006-12-28 Thread Yehuda Katz
element.onclick should be a pointer to the click function, if it exists. Is that what you need? -- Yehuda On 12/28/06, Michael Haggerty <[EMAIL PROTECTED]> wrote: I need to know how to copy all of the events from one object to another. Really getting stuck on this one. What I am trying to do

Re: [jQuery] My First Plugin - Custom Select Box

2006-12-28 Thread blemming
well, I guess my plugin must not be that goodmy post got warpped into a completely different topic :( blemming wrote: > > Here is my first attempt at a plug-in. It is definitely in the early > stage of development, but I thought I'd put it out here for you guys to > rip apart (and hopefull

Re: [jQuery] My First Plugin - Custom Select Box

2006-12-28 Thread Yehuda Katz
My ideal custom select would: * Be stylable in terms of borders and padding (based on the styles on the select box itself) * Delegate events on the custom select to the actual select (to allow for $("select").click( // )) * Position as you would expect a normal select box to position (minus weird

Re: [jQuery] My First Plugin - Custom Select Box

2006-12-28 Thread Yehuda Katz
Nah, I was asking a question about your plugin ;) On 12/29/06, blemming <[EMAIL PROTECTED]> wrote: well, I guess my plugin must not be that goodmy post got warpped into a completely different topic :( blemming wrote: > > Here is my first attempt at a plug-in. It is definitely in the ea

Re: [jQuery] My First Plugin - Custom Select Box

2006-12-28 Thread blemming
* Be stylable in terms of borders and padding (based on the styles on the select box itself) There is no select box present in my plugin. If you notice it is based on a grouping of nested divs and the padding and borders can be controled via css * Delegate events on the custom select to the ac

Re: [jQuery] My First Plugin - Custom Select Box

2006-12-28 Thread Christopher Jordan
Nice work David. It looks really good! Cheers, Chris blemming wrote: > Here is my first attempt at a plug-in. It is definitely in the early stage > of development, but I thought I'd put it out here for you guys to rip apart > (and hopefully provide a suggestions or two) > > Here it is => http:

Re: [jQuery] My First Plugin - Custom Select Box

2006-12-28 Thread blemming
I was just kidding. Turns out its been a long day and I often think I'm funnier than I am wycats wrote: > > Nah, > > I was asking a question about your plugin ;) > > On 12/29/06, blemming <[EMAIL PROTECTED]> wrote: >> >> >> well, I guess my plugin must not be that goodmy post got warp

  1   2   >