[jQuery] Re: NEWS: Ajax Rain: Showcase of Awesome Ajax Controls

2007-06-27 Thread Gilles (Webunity)
Nice website ray! I wonder if all jQuery plugins there are also on the plugins page On 27 jun, 19:05, Rey Bango <[EMAIL PROTECTED]> wrote: > I came across a great link today on DZone.com for Ajax Rain > (http://www.ajaxrain.com). It has one of the best lists of Ajax widgets > and controls I've e

[jQuery] Re: Masked Input Plugin RC2

2007-06-27 Thread Gilles (Webunity)
Nice! However, when you see the mask and press "ESC" the mask also disappears ;) On 28 jun, 03:21, Josh Bush <[EMAIL PROTECTED]> wrote: > Hey there, I'm back at it trying to push to a 1.0 release. I made > some code changes, so I would like some verification that all is well > before I move this

[jQuery] Re: a drop down "quick note"

2007-06-27 Thread tundrax
Use thickbox http://jquery.com/demo/thickbox/ ;)

[jQuery] Problem with SELECT OPTIONS selected item

2007-06-27 Thread tundrax
function(json){ $('#region').empty(); for(var i = 0; i < json.length; i++) { $('#region').append('' + json[i].name + ''); } $('#region').prepend(''+defaultSelectRegion +'').removeAttr('disabled'); }); Above is a code generating a select options from json data retrieved from ajax request.

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-27 Thread Brian Cherne
The netzgesta script effects are pretty cool... inspiration worthy... however: All of his scripts contain functions with common names: getClasses, getImages, etc... so if you're not careful there could easily be conflicts. It would be much nicer if he'd spool his functions off a central object.

[jQuery] Re: Integrating Google Internal Site Search using jquery

2007-06-27 Thread Kenneth
On 6/27/07, Sean Catchpole <[EMAIL PROTECTED]> wrote: Hi, I don't really see the point of making this a jQuery plugin, it's very straightforward as is. Now perhaps if the searches where returned via ajax then that's a different story. ~Sean Actually you may not even need jQ for such: ht

[jQuery] Re: a drop down "quick note"

2007-06-27 Thread Glen Lipka
Then just position it absolutely in CSS. And do the click the same way. Then $("div.whichever").show() This will make it appear, and it will be positioned absolutely. You can also do $("div.whichever").fadeIn("medium") if you want it to appear gracefully. Glen On 6/27/07, PaulM <[EMAIL PROTECT

[jQuery] Re: a drop down "quick note"

2007-06-27 Thread PaulM
yes, but I dont want a sliding anything. I want it to be layed on top of the rest of the page. I want it to cover 200px from the top and display a form that user can close or submit. On Jun 27, 9:00 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > $("a.toplink").toggle( > function(){ > $("

[jQuery] Re: a drop down "quick note"

2007-06-27 Thread PaulM
okay - I want it to be ON TOP of content !!! ;) On Jun 27, 9:00 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > $("a.toplink").toggle( > function(){ > $("#myform").slideDown("slow"); > }, > function(){ > $("#myform").slideUp("slow"); > }); > > Example.http://www.commadot.com/jquery

[jQuery] Re: error at new plugin page

2007-06-27 Thread Sean Catchpole
I posted about this as a bug under the jquery plugins page... on the jquery plugins page. It's most likely a problem with dates being 1963 or something like that. ~Sean

[jQuery] HELP!!!!!!

2007-06-27 Thread Sebastián V. Würtz
What is bad in this? i want a simple alert() but dont work, check the lastest lines var loader = jQuery('id="loading_comments">Cargando, espere por favor') .hide() .appendTo("body"); jQuery().ajaxStart(function() { loader.show(); }) .ajaxStop(fu

[jQuery] Re: error at new plugin page

2007-06-27 Thread Ganeshji Marwaha
yes, even when i registered my plugin (jCarouselLite) with the site, it failed to show me in the list after i saved it... :( On 6/27/07, Mike Alsup <[EMAIL PROTECTED]> wrote: A lot of (most? all?) categories behave that way. Including the "All plugins" category. Mike On 6/27/07, John Resig

[jQuery] Masked Input Plugin RC2

2007-06-27 Thread Josh Bush
Hey there, I'm back at it trying to push to a 1.0 release. I made some code changes, so I would like some verification that all is well before I move this to a v1.0 status. The following is a list of changes for this release. * Now supports user defined placeholder characters by calling "$.AddM

[jQuery] Re: slideViewer now works with the toolTip plugin!

2007-06-27 Thread Ganeshji Marwaha
cool stuff man... what do u mean by "unknown number of images"... -GTG On 6/27/07, GianCarlo Mingati <[EMAIL PROTECTED]> wrote: http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html Hi all. I think i'm done with this plugin. It is becoming a monster so

[jQuery] Re: a drop down "quick note"

2007-06-27 Thread Glen Lipka
$("a.toplink").toggle( function(){ $("#myform").slideDown("slow"); }, function(){ $("#myform").slideUp("slow"); }); Example. http://www.commadot.com/jquery/slideMenu/ Lots of different ways to handle this. Each one is easy. The challenge is finding just the perfect effect for your sit

[jQuery] Re: Dimensions - scrollTop

2007-06-27 Thread Brandon Aaron
That kind of effect should not be in the dimensions plugin but rather in a UI plugin. Demos would help out so much. -- Brandon Aaron On 6/27/07, Glen Lipka <[EMAIL PROTECTED]> wrote: Ahh, I see. Thank you. In terms of setting the ScrollTop, is it possible for that to take a Duration para

[jQuery] Re: Draggables in jQuery

2007-06-27 Thread Glen Lipka
Wow, that kicks ass. I just switched to it from interface draggable on my blog. Saved me 40k. Interestingly, I am dragging a 24-bit PNG. IE is the one with wierd behavior. First off, it jumps way to the left when you start dragging. Secondly, it kills the opacity. I probably should revisit my

[jQuery] Collapsible/Accordion Listing

2007-06-27 Thread aDeviKreates
Greetings All! I am attempting to create a price list as follows: Product Product Category Items When the user comes to the page, I want all the Products to be visible with their Categories and Items hidden. Once the user clicks on the Product, I want the Categories to be displayed with their

[jQuery] a drop down "quick note"

2007-06-27 Thread PaulM
I would like to have a link at the top of my website that upon clicking would show a form that can be clicked and using ajax submitted to the server and than closed how can I do that with Jquery?

[jQuery] Re: InnerFade-Plugin: Text jumps from left to the center

2007-06-27 Thread Ganeshji Marwaha
posting an demo page some where would help me take a look. -GTG On 6/27/07, Muckinger <[EMAIL PROTECTED]> wrote: I´ve tried to but the Link between div, p span ... whatever. Always the same effect. I tried also to change the Link to a block-element. :-( Any other Idee? As i said, must be a

[jQuery] Re: How do I find this error?

2007-06-27 Thread Ganeshji Marwaha
yes, u r right, u have to have one of those applications... i have used both script debugger and script editor. both are ok... so, first download and install it... and then follow the instructions that is given on the top of the blog entry. This should result in ur view->script debuggger menu...

[jQuery] Re: Dimensions - scrollTop

2007-06-27 Thread Glen Lipka
Ahh, I see. Thank you. In terms of setting the ScrollTop, is it possible for that to take a Duration parameter so it could do a slow scroll? Maybe even take easing? Its alot less jarring on the user that way. (Although certainly not for all circumstances) Im excited to swap out for 1.0. I can

[jQuery] Re: Draggables in jQuery

2007-06-27 Thread Ganeshji Marwaha
whatever u provide... i am interested in some lite-weight dra-drop plugin... be sure to post it back here... u already have an excited user waiting to use it. -GTG On 6/27/07, weepy <[EMAIL PROTECTED]> wrote: ah - don't want to get y'all too excited - but I just meant providing 'dragstart' a

[jQuery] Re: Randomly insert one of a pre-defined HTML extracts?

2007-06-27 Thread Scott Sauyet
zarino wrote: Excellent! That was it. It all works brilliantly now. :-D As a side-note: Am I being really picky here, or could the contents of facts.js and custom.js be combined into one file? Seems a shame to have a whole separate javascript file containing just one line of code. That would

[jQuery] Re: Dimensions - scrollTop

2007-06-27 Thread Brandon Aaron
On 6/27/07, Glen Lipka <[EMAIL PROTECTED]> wrote: I dont understand how scrollTop works. Look at this demo page. http://www.commadot.com/jquery/dimensions/ Scroll to the bottom and click the box. Shouldn't it have something in ScrollTop? It is the window that has the scroll offset in this c

[jQuery] Re: error at new plugin page

2007-06-27 Thread Mike Alsup
A lot of (most? all?) categories behave that way. Including the "All plugins" category. Mike On 6/27/07, John Resig <[EMAIL PROTECTED]> wrote: Huh, yeah - that's weird - it stops at four and doesn't continue. Also look at Layout (which should have 7) which also only has 4. I'm CC'ing Mike i

[jQuery] Re: Randomly insert one of a pre-defined HTML extracts?

2007-06-27 Thread zarino
Excellent! That was it. It all works brilliantly now. :-D As a side-note: Am I being really picky here, or could the contents of facts.js and custom.js be combined into one file? Seems a shame to have a whole separate javascript file containing just one line of code. Thanks so much. ~ Zarino

[jQuery] Re: error at new plugin page

2007-06-27 Thread John Resig
Huh, yeah - that's weird - it stops at four and doesn't continue. Also look at Layout (which should have 7) which also only has 4. I'm CC'ing Mike into this so that he can spot it as well. --John On 6/27/07, MathiasBank <[EMAIL PROTECTED]> wrote: Hallo, It seems, that there is an error at t

[jQuery] Dimensions - scrollTop

2007-06-27 Thread Glen Lipka
I dont understand how scrollTop works. Look at this demo page. http://www.commadot.com/jquery/dimensions/ Scroll to the bottom and click the box. Shouldn't it have something in ScrollTop? I tried $("body").scrollTop() too. I think this plugin is really powerful and useful, but the documentatio

[jQuery] error at new plugin page

2007-06-27 Thread MathiasBank
Hallo, It seems, that there is an error at the new plugin page: "jQuery Extensions" for example should have 8 plugins. But if I'm looking into this category, there are only 4 Extensions. I cannot see a "next" or "previous" link. How can I get a complete list of avaiable plugins? Mathias

[jQuery] Re: Difference between element and # access

2007-06-27 Thread Terry B
sry man, i wasnt meaning to get on ya... i wanted to just to point it out cause some ppl really dont know and i would luv to see the developers actually enforce it and not make it easy to be lazy :D so, again sorry... On Jun 27, 4:12 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Yes, of cour

[jQuery] Re: Select only the next row in a table

2007-06-27 Thread Massimiliano Marini
Great! It works! :) I've learned something new, thanks to Glen, Corey and Karl. -- Massimiliano Marini - http://www.linuxtime.it/massimilianomarini/ "It's easier to invent the future than to predict it." -- Alan Kay

[jQuery] Re: Difference between element and # access

2007-06-27 Thread Karl Swedberg
Yes, of course, Terry. I didn't mean to suggest that having multiple IDs is a good idea. I was just noting that the ID selector $('#TimelineContainer') will not select "any" element with that ID. It will only find one -- even if someone wrongly has more than one element with the same ID.

[jQuery] Re: Integrating Google Internal Site Search using jquery

2007-06-27 Thread tzmedia
That's what I was thinking about was using Ajax to show the results in the main div content area as one possibility with jquery. Not sure how practical that would be. I've seen search features contained in a div where the whole thing slides down. Such as: http://www.wordofsport.com/ when you click

[jQuery] Re: Randomly insert one of a pre-defined HTML extracts?

2007-06-27 Thread Scott Sauyet
zarino wrote: Hm... I've made the path relative to the HTML file, but it still doesn't work. My fault. Try: var fact = facts[Math.floor(facts.length * Math.random())]; not var fact = facts[Math.floor(facts.size * Math.random())]; -- Scott

[jQuery] Re: FCKEditor/Codepress/TinyMCE Plugin

2007-06-27 Thread Benjamin Sterling
Diego, No real feedback, just a "Great work" pat on the back. I'd like to see the TinyMCE implementation (or even a TinyMCE to jQuery re-write). On 6/27/07, Diego A. <[EMAIL PROTECTED]> wrote: This is a new thread that originates from this one: http://groups.google.com/group/jquery-en/browse

[jQuery] Re: Randomly insert one of a pre-defined HTML extracts?

2007-06-27 Thread zarino
Hm... I've made the path relative to the HTML file, but it still doesn't work. You can now find all of the files here - http://zarino.zappia.co.uk/keep/ ...or for quick reference: - http://zarino.zappia.co.uk/keep/default.html - http://zarino.zappia.co.uk/keep/scr/files.js - http://zar

[jQuery] Re: Difference between element and # access

2007-06-27 Thread Terry B
The whole point of having an ID is to have a unique id. You should not be assigning the same ID name to multiple objects. Use classes if you want to handle multiple objects. http://www.w3.org/TR/1999/REC-html401-19991224/struct/global.html#adef-id id = name [CS] This attribute assigns a name t

[jQuery] Re: Integrating Google Internal Site Search using jquery

2007-06-27 Thread Sean Catchpole
Hi, I don't really see the point of making this a jQuery plugin, it's very straightforward as is. Now perhaps if the searches where returned via ajax then that's a different story. ~Sean

[jQuery] Re: Randomly insert one of a pre-defined HTML extracts?

2007-06-27 Thread Scott Sauyet
zarino wrote: How come the javascript governing which file-name to choose isn't working? Also, does the path in the jQuery .load event have to be relative to that javascript file, or the 'parent' html file? The path should be relative to the HTML page, not the Javascript. If that doesn't work

[jQuery] Re: Randomly insert one of a pre-defined HTML extracts?

2007-06-27 Thread zarino
Wow, Scott, that's thorough! The third method seems the most plausible. I've tried to implement it, but the fact snippets don't appear in the 'factholder'. Safari tells me there's an error loading the page, and I see that it's tried to load the file "website/facts/undefined.html" (instead of "web

[jQuery] Re: Load into tbody, errors IE6

2007-06-27 Thread Karl Swedberg
So glad to hear that it worked! Cheers, --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 27, 2007, at 2:09 PM, Josh Nathanson wrote: Karl, I've got it working now, using $.get and appendTo. I knew it couldn't be as hard as I was making it. Thanks a

[jQuery] Re: Difference between element and # access

2007-06-27 Thread Karl Swedberg
On Jun 27, 2007, at 2:02 PM, Ganeshji Marwaha wrote: the second one [ $t("#TimelineContainer") ] will select any element with an id of "TimelineContainer" Quick clarification. This will only select the first one it finds in the DOM. To find any element with an id of "TimelineContainer," we'

[jQuery] Re: Difference between element and # access

2007-06-27 Thread Terry B
yea already been testing the methods and going from div.[name] to #[name] took my script from 70s to 16s. i also tested using the document.getElementById('[name]') and there was no difference between that and using #. no more div.[name] for me On Jun 27, 1:57 pm, "Diego A." <[EMAIL PROTECT

[jQuery] Re: slideViewer now works with the toolTip plugin!

2007-06-27 Thread GianCarlo Mingati
bella ;-) ma tu di dove sei? io di roma gc On Jun 27, 4:19 pm, "Salvatore FUSTO" <[EMAIL PROTECTED]> wrote: > great, paisa' > salvatore > P.S. > è che su queste liste sembriamo degli emigrati stile inizio '900 :) > > - Original Message - > From: "GianCarlo Mingati" <[EMAIL PROTECTED]> >

[jQuery] Re: jQuery for GreaseMonkey

2007-06-27 Thread Sean Catchpole
On 6/27/07, Kia Niskavaara <[EMAIL PROTECTED]> wrote: Yes, but what about other libraries? var $j = jQuery.noConflict(); Maby this should be included in the greasemonkey script? An excellent point, perhaps I'll stick the entire "[code]" region inside of a closure so that one can still call jQu

[jQuery] Re: Load into tbody, errors IE6

2007-06-27 Thread Josh Nathanson
Karl, I've got it working now, using $.get and appendTo. I knew it couldn't be as hard as I was making it. Thanks a million! -- Josh - Original Message - From: Karl Swedberg To: jquery-en@googlegroups.com Sent: Wednesday, June 27, 2007 10:16 AM Subject: [jQuery] Re: Load int

[jQuery] Re: Difference between element and # access

2007-06-27 Thread John Resig
They're both just as fast as each other - jQuery has an optimization in place to account for that. Terry: I assume that you mean "div#TimelineContainer" in your first example. --John On 6/27/07, Diego A. <[EMAIL PROTECTED]> wrote: I'm not sure, but I'm guessing there will be some sort of per

[jQuery] Re: Difference between element and # access

2007-06-27 Thread Ganeshji Marwaha
the first one will find all the "div" elements with a class name of "TimelineContainer". the second one will any element with an id of "TimelineContainer" -GTG On 6/27/07, Diego A. <[EMAIL PROTECTED]> wrote: I'm not sure, but I'm guessing there will be some sort of performance difference. I'

[jQuery] Re: Difference between element and # access

2007-06-27 Thread Diego A.
I'm not sure, but I'm guessing there will be some sort of performance difference. I'm guessing '#id' is faster than 'div#id' if '#id' just uses getElementById, whereas 'div#id' might finds all divs then filter by id. On Jun 27, 5:46 pm, Terry B <[EMAIL PROTECTED]> wrote: > what is the difference

[jQuery] Re: Load into tbody, errors IE6

2007-06-27 Thread Josh Nathanson
Thanks Karl, I'll give that a try. -- Josh - Original Message - From: Karl Swedberg To: jquery-en@googlegroups.com Sent: Wednesday, June 27, 2007 10:16 AM Subject: [jQuery] Re: Load into tbody, errors IE6 Hi Josh, I wonder if you could get your through a different a

[jQuery] Re: Load into tbody, errors IE6

2007-06-27 Thread Josh Nathanson
DWRUtil.removeAllRows("testBody"); DWRUtil.addRows("testBody", resultarray, [ ID , FIELD ]) I think that those methods probably create/append nodes rather than use innerHTML. I recognize those methods from CFAjax. -- Josh - Original Message - From: "Terry B" <[EMAIL PROTECTED]>

[jQuery] Re: Validate() and TinyMCE problem

2007-06-27 Thread Diego A.
I've started a new thread here: http://groups.google.com/group/jquery-en/browse_frm/thread/f649148d8ff5511a ...so more people can check it out and tell us what they think. On Jun 27, 6:15 pm, "Diego A." <[EMAIL PROTECTED]> wrote: > Ideally... > OR, the FCK plugin could integrate itself to the oth

[jQuery] FCKEditor/Codepress/TinyMCE Plugin

2007-06-27 Thread Diego A.
This is a new thread that originates from this one: http://groups.google.com/group/jquery-en/browse_frm/thread/dc46c37c32327ab1/63c079e865ab1945#63c079e865ab1945 As the thread developed I decided to share my solution to the problem and start a new plugin (work in progress). The thread has been fo

[jQuery] Re: Select only the next row in a table

2007-06-27 Thread Glen Lipka
$("tr").next("tr").show(); Would this do it? Glen On 6/27/07, Massimiliano Marini <[EMAIL PROTECTED]> wrote: Hi all, I've this table : View Next Row Cell with content Hello to the jQuery community ... ... ... I'm using this code to diplay the tr with hidden c

[jQuery] Re: Load into tbody, errors IE6

2007-06-27 Thread Karl Swedberg
Hi Josh, I wonder if you could get your through a different ajax method and then append it to the once it's retrieved. Something like this, perhaps: $.get('prodsched/dom_dpdcolorrow.html', function(data){ $(data).appendTo('#' + asp + '_tbody'); }); Not positive it will work, but worth

[jQuery] Re: Validate() and TinyMCE problem

2007-06-27 Thread Diego A.
Ideally... OR, the FCK plugin could integrate itself to the others the same way I integrate it with the Form plugin. But since we're talking about mix- matching plugins, this would require some feedback from the plugins' authors... eg.: // find existing method to override if($.fn.ajaxSubmit){ /

[jQuery] Re: Estimated 1.1.3 release date?

2007-06-27 Thread John Resig
We got delayed trying to add some speed improvements, it'll be this work week, we're just checking against the final few plugins that we broke last time. --John On 6/27/07, Chip D <[EMAIL PROTECTED]> wrote: Just wondering in 1.1.3 is any closer to getting a release date? On May 15, 8:07 pm,

[jQuery] Re: Load into tbody, errors IE6

2007-06-27 Thread Terry B
i dont have any problems with mine in IE6 var ID = function(query) { return query.ID }; var FIELD = function(query) { return query.FIELD }; function NewQueryResult(result) { DWRUtil.removeAllRows("testBody"); DWRUtil.addRows("testBody", resultarray, [ ID , FIELD ]) } ~Terry On Jun 27, 12:2

[jQuery] Difference between element and # access

2007-06-27 Thread Terry B
what is the difference between $t("div.TimelineContainer") and $t("#TimelineContainer") within JQuery? is the first using byid and the other by tagname?

[jQuery] Re: Estimated 1.1.3 release date?

2007-06-27 Thread Chip D
Just wondering in 1.1.3 is any closer to getting a release date? On May 15, 8:07 pm, MikeR <[EMAIL PROTECTED]> wrote: > Ok great, John =). Thanks for the update. > > On May 15, 12:43 pm, "John Resig" <[EMAIL PROTECTED]> wrote: > > > We're still dealing with site issues, hopefully this weekend, bu

[jQuery] NEWS: Ajax Rain: Showcase of Awesome Ajax Controls

2007-06-27 Thread Rey Bango
I came across a great link today on DZone.com for Ajax Rain (http://www.ajaxrain.com). It has one of the best lists of Ajax widgets and controls I've ever seen. The site actually uses jQuery and lists quite a number of jQuery plugins. In addition, it lists out controls from other libraries an

[jQuery] Re: InnerFade-Plugin: Text jumps from left to the center

2007-06-27 Thread Muckinger
I´ve tried to but the Link between div, p span ... whatever. Always the same effect. I tried also to change the Link to a block-element. :-( Any other Idee? As i said, must be a Firefox-"Problem", IE works... {js}sTyler wrote: > > > Not for certain, did you try placing the link between parag

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-27 Thread Jan Sorgalla
Hi, On Jun 27, 6:40 pm, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > Thanks Jan, I will take a look at it. To be honest, i was planning to dig > into your source code this weekend. Now that you have pointed me to the > exact functions that i need to de-code, i guess, you have saved me a lot of

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-27 Thread Ganeshji Marwaha
Thanks for ur kind words tzmedia. Some of the features that are planned for the next release are 1. automatic scrolling 2. scrolling many items at a time 3. auto-detection of buttons - if necessary Looks like automatic scrolling is something that you are looking for. But, i don't understand what

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-27 Thread Ganeshji Marwaha
Thanks Jan, I will take a look at it. To be honest, i was planning to dig into your source code this weekend. Now that you have pointed me to the exact functions that i need to de-code, i guess, you have saved me a lot of time. Thank u very much. -GTG On 6/27/07, Jan Sorgalla <[EMAIL PROTECTED]

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-27 Thread Ganeshji Marwaha
sure anton... point noted and will incorporate it this weekend :-). thanks for the feedback. -GTG On 6/27/07, Anton <[EMAIL PROTECTED]> wrote: Love it! But... > << > >> Is there any way you could determine if the number of items equals the setting in "visible"? I'd

[jQuery] Re: InnerFade-Plugin: Text jumps from left to the center

2007-06-27 Thread tzmedia
Not for certain, did you try placing the link between paragraph tags and applying the css to the P tags. Just a thought, seems to me I've tried centering some text beneath an image and not had much luck either. On Jun 27, 12:18 pm, Muckinger <[EMAIL PROTECTED]> wrote: > Hi, > > i would like to us

[jQuery] Re: Load into tbody, errors IE6

2007-06-27 Thread JoshN
OK, after some Googling I found out that in IE6, innerHTML within a table is read-only. Since the jQuery load method uses innerHTML, you can't load a into a table. Crap. On Jun 26, 6:01 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > Hey all, > > I have a script that does an ajax load into a

[jQuery] Re: How do I find this error?

2007-06-27 Thread Chris Jordan
Thanks heaps, Mike! I've a question though. That blog entry you point to says: "When you've enabled Script Debugging 'View->Script Debugger' will now be present to help you break into the debugger." But, I'm not finding that's the case. Also, it goes on to talk about three applications that the

[jQuery] InnerFade-Plugin: Text jumps from left to the center

2007-06-27 Thread Muckinger
Hi, i would like to use the fantastic InnerFade Plugin from http://medienfreunde.com/lab/innerfade/ http://medienfreunde.com/lab/innerfade/ I want to change DIV-Containers. A Link in this container is centerd with text-align: center. But with Firefox the Link/Text starts with every Fade on th

[jQuery] Re: Are there any Wordpress themes using jquery?

2007-06-27 Thread Gerry
Kia, I haven't seen any themes so far in my travels that have jQuery directly integrated into them, however I've seen some WP-based sites that have embedded jQuery into them. I have two myself, one of which is http://scratbycoastalerosion.org.uk that is on WP2.2.1 with jQuery enqueued plus some

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-27 Thread weepy
maybe check this out : http://www.netzgesta.de/instant/ *...( On Jun 27, 4:24 pm, "Scott Trudeau" <[EMAIL PROTECTED]> wrote: > > I'm developing in Coldfusion, by the way. But, I don't think I can > > use a server side script for this as I need it to update without a > > page refresh... > >

[jQuery] Re: Select only the next row in a table

2007-06-27 Thread Glen Lipka
I made a demo page. http://www.commadot.com/jquery/nextrow/ Click on a row and it shows the next row. My first syntax worked fine. $("table tr:odd").hide() $("td").click( function() { $(this).parents("tr").next("tr").show(); } ); Glen On 6/27/07, Glen Lipka <[EMAIL PROTECTED]> wrote:

[jQuery] Re: Select only the next row in a table

2007-06-27 Thread Karl Swedberg
On Jun 27, 2007, at 11:29 AM, Corey Frang wrote: Not really, that selector finds ALL "tr" then any "tr" after each of those. Assuming your calling it from something like this: $(".showNextRow).click(function() { $(this).parents("tr").next("tr.hidden").show(); return false; }); also ass

[jQuery] Re: Select only the next row in a table

2007-06-27 Thread Glen Lipka
What about $(this).parents("tr").next("tr.first").show(); On 6/27/07, Corey Frang <[EMAIL PROTECTED]> wrote: Not really, that selector finds ALL "tr" then any "tr" after each of those. Assuming your calling it from something like this: $(".showNextRow).click(function() { $(this).parents(

[jQuery] Re: Select only the next row in a table

2007-06-27 Thread Corey Frang
Not really, that selector finds ALL "tr" then any "tr" after each of those. Assuming your calling it from something like this: $(".showNextRow).click(function() { $(this).parents("tr").next("tr.hidden").show(); return false; }); also assuming that the t1 table isn't inside another table with

[jQuery] Re: Are there any Wordpress themes using jquery?

2007-06-27 Thread Glen Lipka
Mine does. http://www.commadot.com Originally, I used this: http://themes.wordpress.net/columns/2-columns/2945/bigflower-10/ and then I started hacking it up, adding jQuery, rounding the corners, adding search, several plugins. You can drag the image on the top right. WordPress has a contest to

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-27 Thread Scott Trudeau
I'm developing in Coldfusion, by the way. But, I don't think I can use a server side script for this as I need it to update without a page refresh... There are a number of ways you could do this with a .ajax or similar call. E.g., let's say you write a coldfusion script that accepts as param

[jQuery] Re: How to Rotate an Image 90 Degrees

2007-06-27 Thread cfdvlpr
I've taken a look at swfIR and that seems to work. However, I'm not sure that I can change the src of the image with Jquery and have it still work (without a page refresh). Please correct me if I am wrong. I'm developing in Coldfusion, by the way. But, I don't think I can use a server side scr

[jQuery] Re: Are there any Wordpress themes using jquery?

2007-06-27 Thread Su
Aquatic Adventures[1]: http://tomk32.de/2007/04/03/wordpress-theme-aquatic-adventures/ Scanning the post, he says that it uses jQuery "as usual," so I presume he's done others with it. [1] http://www.google.com/search?q=wordpress+theme+jquery On 6/27/07, Kia Niskavaara <[EMAIL PROTECTED]> wrote

[jQuery] Re: jQuery and confirm

2007-06-27 Thread Alexandre Plennevaux
Change your links launchingthe tickbox to another class, say "thickboxDeleteImage". Remove the onclick code attached to your links. Stick Something like this (untested) inside a script tag in the head of yur html document: $(document).ready(function(){ $(".thickboxDeleteImage").bind("click",func

[jQuery] Re: Randomly insert one of a pre-defined HTML extracts?

2007-06-27 Thread Scott Sauyet
zarino wrote: Server-side coding would be nice, but it's not PHP-enabled, and I think the only method would through ASP which I, frankly, haven't the foggiest clue about! For the time it'll take to download the relatively small number of 'facts', it shouldn't be a problem. Wasted bandwidth! T

[jQuery] Re: Interface - Resizable by x pixels

2007-06-27 Thread Terry B
bump

[jQuery] Re: Could anyone send me a copy of Catfish Advert Plugin 1.3.

2007-06-27 Thread Kia Niskavaara
Michael Price wrote: > > Logan Cai wrote: >> could you send me a copy of Catfish-Advert-Plugin-1.3, if you have. > > Logan, > I don't think the problem is the plugin. The one I sent may well have > been 1.3, but I think Catfish was written for jQuery 1.0.x and obviously > we're on 1.1.x now an

[jQuery] Re: slideViewer now works with the toolTip plugin!

2007-06-27 Thread Salvatore FUSTO
great, paisa' salvatore P.S. è che su queste liste sembriamo degli emigrati stile inizio '900 :) - Original Message - From: "GianCarlo Mingati" <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Wednesday, June 27, 2007 3:43 PM Subject: [jQuery] slideViewer now works with the toolTip plu

[jQuery] Re: jQuery and confirm

2007-06-27 Thread Angelo Zanetti
Hi Alexander, Do you have any idea of how I can build a wrapper for the confirm() box? Thanks Angelo Alexandre Plennevaux wrote: It's because of the way cody's thickbox script is made: it does not by default give control on how the thickbox gets executed Your link gets thickboxed since it ha

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-27 Thread tzmedia
It looks very useful, i've been looking at solutions to add feature content, slides if you will to site homepages. Something on a timer, with manual slide controls also. Similar to what download.com used to do on it's homepage. This looks like it could do just that, possibly. You've got a nice pag

[jQuery] Integrating Google Internal Site Search using jquery

2007-06-27 Thread tzmedia
Curious if anyone had any ideas about integrating the internal site search from javascriptKit: http://www.javascriptkit.com/script/script2/google_site_search.shtml I've got some ideas, but wondered if anyone had seen any site search utilities using jquery and any other search resources or Google.

[jQuery] slideViewer now works with the toolTip plugin!

2007-06-27 Thread GianCarlo Mingati
http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html Hi all. I think i'm done with this plugin. It is becoming a monster so it's better to leave it as it is now. Added in the past 24H: 1) a tricky preloader wich equally works for FF, Opera and IE7 2) added

[jQuery] Re: Randomly insert one of a pre-defined HTML extracts?

2007-06-27 Thread zarino
Thanks guys! Server-side coding would be nice, but it's not PHP-enabled, and I think the only method would through ASP which I, frankly, haven't the foggiest clue about! For the time it'll take to download the relatively small number of 'facts', it shouldn't be a problem. I take it, using your c

[jQuery] Re: jQuery, Ajax Form and memory usage

2007-06-27 Thread Vivi
Anyone got any idea about how to resolve this "issue"? Thanks a lot :)

[jQuery] Re: How much info to disclose

2007-06-27 Thread John Resig
Rey sent this to the list accidentally. Just to clarify for everyone: We're working on some more plugins that we'll be announcing soon. Interface is still an official plugin and nothing is changing in this respect. Expect to see more information about the upcoming releases later this week. --J

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-27 Thread Jan Sorgalla
Hi, On Jun 27, 2:24 am, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > brandon, > > no luck buddy... outerHeight returns the result that excludes the margin > values of the element. > i would like the width of the element including the margin values as well... you should check the dimension() a

[jQuery] Re: jQuery solutions needed...

2007-06-27 Thread John Farrar
I have shared this at speaking engagements on other topics over the years. When windows and mac took the Xerox window technology and created the replacement for "DOS" as it was known there was a reason it worked. Along the same time there was also a core group of "assembly" programmers that tho

[jQuery] How much info to disclose

2007-06-27 Thread Rey Bango
John, There have been some questions about Interface and whether its official or not. With Paul basically reworking several key aspects of effects, do we want to release any info on his work? Rey... -- BrightLight Development, LLC. 954-775- (o) 954-600-2726 (c) [EMAIL PROTECTED] http://

[jQuery] Re: resize columns!

2007-06-27 Thread Simpel
Hi Su YEAH! the splitter is is exactly what I'm after! Thanks for the tip! On 25 Juni, 17:42, Su <[EMAIL PROTECTED]> wrote: > On 6/25/07, Simpel <[EMAIL PROTECTED]> wrote: > > > > > What I'm after is a way of changing the width of the columns by > > dragging some kind of slider, the height of th

[jQuery] Re: jQuery solutions needed...

2007-06-27 Thread Erik Beeson
Thanks for the clarification. --Erik On 6/27/07, Rey Bango <[EMAIL PROTECTED]> wrote: Erik, I think I can clarify this. Interface is an official plugin and a big part of the jQuery project. Both Stefan & Paul, the authors and maintainers of Interface, are members of the jQuery project team

[jQuery] Re: jQuery solutions needed...

2007-06-27 Thread Rey Bango
Erik, I think I can clarify this. Interface is an official plugin and a big part of the jQuery project. Both Stefan & Paul, the authors and maintainers of Interface, are members of the jQuery project team whose primary task is to work on effects. The relationship is more like Prototype/Scri

[jQuery] Re: jQuery solutions needed...

2007-06-27 Thread Erik Beeson
While it's arguing a bit of a technicality, I maintain that Interface is not part of the core development of jQuery, and that it's still very much an addon, not a true first class citizen like in Ext/YUI. From http://docs.jquery.com/About/Contributors "Interface has been adopted as an official

  1   2   >