[jQuery] Multiple Key events

2007-02-28 Thread Allan Mullan
Hey all, Just wondering if someone could tell me what the best way to capture a an event where 2 keys are pressed simultaneously - I've got a textarea that I want to capture the Ctrl+Enter combo... Thanks in advance Allan ___ jQuery mailing list

Re: [jQuery] Ajax get does not fetch image in IE

2007-02-28 Thread Kenneth
$html = ' div http://www.joomlaprodigy.com/test/jquery/nophoto.gif This is the first ajax thing I have been able to make work on my sitebr/ Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat./div ';

Re: [jQuery] Multiple Key events

2007-02-28 Thread Chris Domigan
You can use Event.ctrlKey which will return true if the ctrl key was pressed during the event. So you could do something like: $(#myTextarea).bind(keypress, function(e) { if (e.keyCode == 13 e.ctrlKey) { // do stuff } }); 13 is the code for Enter. Cheers, Chris

Re: [jQuery] Multiple Key events

2007-02-28 Thread Chris Domigan
p.s. Yay, a fellow New Zealander :). Hi from Christchurch! ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jQuery 1.1.2

2007-02-28 Thread Chris Domigan
John, is it possible for the packed version to have a trailing semi-colon at the end? I get errors for the script I include after jquery if this isn't in place. Cheers and thanks for another great release, Chris ___ jQuery mailing list

Re: [jQuery] Q: best way to create dynamic content?

2007-02-28 Thread Francesco Sullo
I suggest to use jQuick. In your case you can create the code using: $('#myAnchor').append( $.DIV( id: myIdVar, 'class': myClassvar} ) jQuick is at http://jquick.sullof.com/ In the next days I will release a new powered version. nrwsteff ha scritto: short question: what is the

Re: [jQuery] jQuery 1.1.2

2007-02-28 Thread Fil
* Changed: Events are now internally stored in elem.$events rather than elem.events (due to a nasty bug relating to DOM 0 expandos). I'm translating this blog into French, but I can't figure how to translate this sentence. DOM 0 expandos ? Anyway this is available at

[jQuery] jquery accordion plugin settings help

2007-02-28 Thread schnuck
hi guys, i am using the below with the accordion plugin and want initially all panels to be closed, hence i have added active: false but with no effect at all. what am i doing wrong? tia, s $(function(){ $('#main').Accordion(); $.extend($.fn.Accordion.defaults, {

[jQuery] Form validator 0.2 causes problems in IE6

2007-02-28 Thread amircx
hey, when i run form validator from http://bassistance.de/jquery-plugins/jquery-plugin-validation/ , after putting the uncompressed version, its working fine in ie 7 but in ie 6 its returns me error: (here is the code: http://pastebin.ca/374655 ) object dosent support this property or method

[jQuery] jQuery/Validation plugin on FireBug - Couldn't catch events

2007-02-28 Thread R. Rajesh Jeba Anbiah
I'm just trying to walk through the script http://jquery.bassistance.de/validate/demo-test/validate-demo.html with FireBug. FireBug breaks when loading the page; but not on any events, say when submitting the form or when the error text is been added. Is there anyway/workaround for it? TIA --

[jQuery] Replace text in array

2007-02-28 Thread Yansky
I have many of the following type of links on a page: a href=htp://foo.com/index.cfm?a=wikitag=abcspanhtp://foo.com/index.cfm?a=wikitag=abc/span I'm trying to remove the text in between the span tags so that only the text after http://foo.com/index.cfm?a=wikitag= is showing. I have tried the

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread BoOz
Hi, Klaus Hartl a écrit : agent2026 schrieb: Very nice Klaus. One thing I would really like to see added (which I've done with help my modded version) is circular browsing - 'next' on last image loads first image, and vice versa - and 'click=next' when clicking on an image in a Thickbox.

Re: [jQuery] problem with iFrame in FF (again)

2007-02-28 Thread Abel Tamayo
Well, I don't have a way to publish it on a server right now, but I could try showing here the whole script. It's actually just a demo since I have to polish this aspect before I can go on with all the other work in the plugin. !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html

Re: [jQuery] My basic navigation plugin

2007-02-28 Thread Joel Birch
On 28/02/2007, at 8:17 AM, Joel Birch wrote: On 28/02/2007, at 12:29 AM, Klaus Hartl wrote: Joel Birch schrieb: Hi jQuerivites, I'd like to offer up my humble plugin (humble is the key word here) to get a sense of if something this basic is of any worth to the community. I think its

Re: [jQuery] JS Source code Formatter - Anyone know of any good ones

2007-02-28 Thread R. Rajesh Jeba Anbiah
On Feb 20, 10:34 pm, harningt [EMAIL PROTECTED] wrote: Just wondering... does anyone know of any good source-code formatters for JavaScript. snip Possibly http://code.gosu.pl/dl/JsDecoder/demo/JsDecoder.html ? -- ?php echo 'Just another PHP saint'; ? Email: rrjanbiah-at-Y!comBlog:

Re: [jQuery] Replace text in array

2007-02-28 Thread Karl Rudd
You almost have it. The each function actually returns the raw DOM element so to use jQuery you'll need to enclose this. Just replace the core with: var $this = $(this); $this.html( $this.html().replace(/index.cfm?a=wikitag=/gi, ) ); Karl Rudd On 2/28/07, Yansky [EMAIL PROTECTED] wrote: I

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread Torbjorn Tornkvist
Some other things: I've been using Imagebox and are missing a way of Stopping/Unloading it. Also, a hook when Imagebox closes down would have been very handy. Perhaps Thickbox3 can remedy this? Btw: what is the plan here, Thickbox looks very much alike as Imagebox. It could/is a bit confusing

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread agent2026
I like the idea of the zoom feature a lot for larger images. You have some window resize issues with the overlay though (common issue), as well as if an image has been zoomed. The slideshow link is and excellent feature - user configurable. I agree with the feedback. I started in the middle,

Re: [jQuery] jQuery 1.1.2

2007-02-28 Thread Seb Duggan
I've noticed a problem in Safari too, this time with the datePicker plugin (also written by Kelvin - sorry!). When clicking the date picker icon, Safari immediately crashes every time when using the 1.1.2 release. However, I've tested with every single nightly build, from Feb 18 to Feb 28,

Re: [jQuery] Is there a jQuery way to do an innerWrap?

2007-02-28 Thread Dave Probert
Try the function below and see if you can get it to work as shown - you probably won't be able to!!! The example, as given, replaces the content of the p with the 'el' part, but does not add a closing tag or put back the original content. Karl Swedberg-2 wrote: Christian Bach just posted

Re: [jQuery] My basic navigation plugin

2007-02-28 Thread Klaus Hartl
Joel Birch schrieb: On 28/02/2007, at 8:17 AM, Joel Birch wrote: On 28/02/2007, at 12:29 AM, Klaus Hartl wrote: Joel Birch schrieb: Hi jQuerivites, I'd like to offer up my humble plugin (humble is the key word here) to get a sense of if something this basic is of any worth to the

Re: [jQuery] Replace text in array

2007-02-28 Thread Yansky
Hi, thanks for the reply. I tried your code inside the function but it didn't work unfortunately. This is the actual site with the links I'm trying to convert: http://forums.whirlpool.net.au/forum-replies.cfm?t=661554 I'm hoping to make a greasemonkey script since the site already uses the

Re: [jQuery] New plugins

2007-02-28 Thread Klaus Hartl
Timothy Bowler schrieb: Hi, I spend a long time yesterday writing a plugin, what is the proceedure for advertising it? Tim Hi Tim, I think the first step is to create an online demo, and then post the plugin here. You can also add your plugin to the plugin wiki page. By the way, the

[jQuery] nth-child selector

2007-02-28 Thread Dan Eastwell
Hello, I'm trying to select every odd item in a list, but not the first two items. I've tried using the nth-child selector, which is fine at picking out the nth-child, but I can't get the 2n+2 child to be selected: stripes(#search-results div:odd); // is ok

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread agent2026
Well for one, it's 17k packed standalone whereas my heavily modified Thickbox is just 6k packed. Small file size was one of the top reasons Cody made Thickbox in the first place, and it's definately a very important factor for me. Adam Torbjorn Tornkvist wrote: Some other things: I've

[jQuery] how to make the function in forms + ajax?

2007-02-28 Thread amircx
hey. im using the ajax form plugin of jroes, http://www.amir.cx/ajax/test3/stable.php till now i success to do the rules inside the tag, but where i can put inside that code a properties like rules: { firstname: { required: true }, age: { number: true }, password: { min: 5, max:

[jQuery] jquery upload... what are you using?

2007-02-28 Thread amircx
hey. i wonder what is the most used or what u are using for uploading files with ajax and jquery... i found serval but i really dont know what to pick... suggestions? -- View this message in context: http://www.nabble.com/jquery-upload...-what-are-you-using--tf3308624.html#a9203250 Sent from

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread Sam Collett
On 28/02/07, agent2026 [EMAIL PROTECTED] wrote: Well for one, it's 17k packed standalone whereas my heavily modified Thickbox is just 6k packed. Small file size was one of the top reasons Cody made Thickbox in the first place, and it's definately a very important factor for me. Adam It is

Re: [jQuery] jquery upload... what are you using?

2007-02-28 Thread Alexandre Plennevaux
I created jqUploader to take care of that in an non obtrusive way: http://www.pixeline.be/test/jquery/jqUploader/ There is one functionality i did not get done yet, is limiting filesize (on the clientside, as to play it safe you would have to take care of that on the serverside like for all

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread Alexandre Plennevaux
If filesize is to be TB biggest advantage, personally in fact i rarely need to be able to launch a TB with iframe, ajax and images on the same page, or even Application. I guess i'm not the only one to choose before hand at design time how my app will use TB (ajax/iframe) to display interfaces.

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread Klaus Hartl
Sam Collett schrieb: On 28/02/07, agent2026 [EMAIL PROTECTED] wrote: Well for one, it's 17k packed standalone whereas my heavily modified Thickbox is just 6k packed. Small file size was one of the top reasons Cody made Thickbox in the first place, and it's definately a very important factor

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread Alexandre Plennevaux
One thing is sure: I'll not be able to implement all the different requirements here, and so why not allowing extendibility made easy (I like making things as easy to use as possible). Right on. The TB website forum can be used to build a knowledge base of various common extended uses (like

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread Klaus Hartl
Alexandre Plennevaux schrieb: If filesize is to be TB biggest advantage, personally in fact i rarely need to be able to launch a TB with iframe, ajax and images on the same page, or even Application. I guess i'm not the only one to choose before hand at design time how my app will use TB

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread Dylan Verheul
On 2/28/07, Klaus Hartl [EMAIL PROTECTED] wrote: Alexandre Plennevaux schrieb: as for feature, proportional dimensions is a must IMO. There is no sense fixing width and height of thickbox in today's multitude of screen sizes... What exactly do you mean by that. Currently if an image is too

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread Alexandre Plennevaux
as for feature, proportional dimensions is a must IMO. There is no sense fixing width and height of thickbox in today's multitude of screen sizes... What exactly do you mean by that. Currently if an image is too large for the viewport it gets resized. Is it that? I took that from the current

Re: [jQuery] jQuery 1.1.2

2007-02-28 Thread Mark
nice to see a bug fix release :) though atleast one bug is still in.. that`s the fadein and fadeout of a div in internet explorer.. it moves a little when those actions are done in IE (6) 2007/2/28, Seb Duggan [EMAIL PROTECTED]: I've noticed a problem in Safari too, this time with the

Re: [jQuery] jquery rocks

2007-02-28 Thread {js}sTyler
Thanks Rick, Hey I'm cool now... I found the emails are posted more or less as a forum at: http://www.nabble.com/JQuery-f15494.html I've googled my way there quite a few times looking for solutions and/or new jQuery goodies. It's much easier to search for me, and there is a huge amount of Q n'

Re: [jQuery] JS Source code Formatter - Anyone know of any good ones

2007-02-28 Thread Christof Donat
Hi, Chili, based on jquery http://www.mondotondo.com/aercolino/noteslog/?page_id=79 I think, He is looking for something like indent for javaScript. Christof ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Capturing an event when an input value is changed programmatically

2007-02-28 Thread Daemach
I'm using the Xin calendar in one of my forms. It's a great little DHTML calendar, but I need to capture an event when the value is changed programmatically so I can do something with the value. I've tried firing the event manually using element.onchange(); but that doesn't seem to work - at

Re: [jQuery] Interface Sortables - class instability

2007-02-28 Thread Michael Crowl
Thanks for the responses Mark, and that's exactly what I've done, and I still have the same problem. Could someone explain to me exactly how Sortables/Draggables/Droppables works, and how classes get assigned during the drag process? I understand that once a drag is activated, a copy of the

[jQuery] Announce: Unobtrusive JavaScript with jQuery and symfony

2007-02-28 Thread François Zaninotto
Hi list, I just pop in to mention a new plugin for the symfony framework (http://www.symfony-project.com) that uses jQuery to implement unobtrusive scripting. It's still in its infancy, but it takes the best of the jQuery syntax concision and provides useful tools for interface developers who

[jQuery] .next() bug?

2007-02-28 Thread agent2026
The mark-up: ul li/li li class=expandable/li ul li/li li/li /ul /li li/li /ul The js: $('li.expandable') .bind('click', function(){ $(this).next().slideToggle('fast'); }) .next().hide() ; Now, my mark-up is wrong. I should have wrapped the nested ul in it's own li, but I

Re: [jQuery] problem with edit in place on HTML coding.

2007-02-28 Thread Mark
oke.. i fixed the issue now. incase you want to know the solution i added this function: function html_entity_decode(str) { var ta=document.createElement(textarea); ta.innerHTML=str.replace(//g,lt;).replace(//g,gt;); return ta.value; } than i edited this line: i.value = self.revert; to:

Re: [jQuery] jQuery 1.1.2

2007-02-28 Thread John Resig
Mark - Yep, we have fixes for those animation bugs, but we're in the process of testing them more (after which we'll release them). --John On 2/28/07, Mark [EMAIL PROTECTED] wrote: nice to see a bug fix release :) though atleast one bug is still in.. that`s the fadein and fadeout of a div in

Re: [jQuery] Interface Sortables - class instability

2007-02-28 Thread Michael Crowl
And, of course, as soon as I wrote that all out and sent it, I figured it out. The designer was using 1.2em, etc for font sizes, which meant relatively, once the copy of the container was made, the fonts got amped up. But relative to what? The original? It brings up the question of where

Re: [jQuery] .next() bug?

2007-02-28 Thread Brian Miller
It's hard enough to get everything working properly for documents that are well-formed. I don't think that it's worth the effort to force consistency in how jQuery handles broken documents. If you do anything on top of an invalid DOM, you can't make the results predictable. Even if you could,

Re: [jQuery] Accordion - onHide / onShow actions available ?!?!

2007-02-28 Thread Cees (**snow**)
Hi Jörn First of all - i love this widget :-)) Second - i had seen the .change in your doc but was not sure if i should go with that or there was another possibility - i will have a look at .change - i am a bit of newbie in Jquery but know where to find the docs ;-) Grtz:cees Sneeuw Tijger

Re: [jQuery] .next() bug?

2007-02-28 Thread agent2026
That's not what I'm looking for at all. The point was whether or not .next() is always returning the correct element in a given situation. It was merely a concern, not a request to make jQuery work on broken docs. Adam Citrus wrote: It's hard enough to get everything working properly for

[jQuery] Amazing jQuery!

2007-02-28 Thread howard chen
I really appreciate the developers and of coz , users of jQuery. You made the history! I have learned javascript for more than 10 years and never thought that it is so powerful with jQuery - only 20KB of library! I thought it should be part of the javascript standard! Also, the emails are so

Re: [jQuery] Amazing jQuery!

2007-02-28 Thread Alexandre Plennevaux
You mean... history.next() ? °-) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of howard chen Sent: mercredi 28 février 2007 17:44 To: discuss@jquery.com Subject: [jQuery] Amazing jQuery! I really appreciate the developers and of coz , users of

Re: [jQuery] .next() bug?

2007-02-28 Thread Michael Geary
Now, my mark-up is wrong. I should have wrapped the nested ul in it's own li, but I missed it. Testing looked good in FF 2, .next() was returning the nested ul, and I didn't even notice the problem. In IE6/7 however, .next() returned the next li, and not the ul which was in fact next

Re: [jQuery] JS Source code Formatter - Anyone know of any good ones

2007-02-28 Thread Tsz Ming WONG
maybe http://astyle.sourceforge.net/ ? you might need to tweak the settings for javascript. On 2/28/07, Christof Donat [EMAIL PROTECTED] wrote: Hi, Chili, based on jquery http://www.mondotondo.com/aercolino/noteslog/?page_id=79 I think, He is looking for something like indent for

Re: [jQuery] jQuery 1.1.2

2007-02-28 Thread Mark
wonderfull!! good luck with bug hunting/fixing 2007/2/28, John Resig [EMAIL PROTECTED]: Mark - Yep, we have fixes for those animation bugs, but we're in the process of testing them more (after which we'll release them). --John On 2/28/07, Mark [EMAIL PROTECTED] wrote: nice to see a bug fix

[jQuery] Plugin wanted

2007-02-28 Thread Franck Marcia
Hi all, Sorry for this request but I've looked for a plugin I saw which auto-sizes an input or a textarea according to its content. I looked at the plugins' page, in the mailing list archive. No way to find it! If somebody could help me... Cheers, Franck.

Re: [jQuery] jQuery 1.1.2

2007-02-28 Thread rolfsf
Not sure if this is bug-related or not, but if I try to open the test page in the full release of 1.1.2 (test/index.htm) it crashes Safari (2.0.4) every time. FWIW. John Resig wrote: As always, if you have any questions or concerns with new release, please feel free to discuss it on the

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread [-Stash-]
A simple Cancel link would be superb - I think this is an essential addition! Torbjorn Tornkvist wrote: I've been using Imagebox and are missing a way of Stopping/Unloading it. Also, a hook when Imagebox closes down would have been very handy. Perhaps Thickbox3 can remedy this? -- View

Re: [jQuery] Interface Sortables - class instability

2007-02-28 Thread Mark
i didn`t set any styles and tested what you`ve wrote and it works fine here.. i`m using Firefox 2.0.0.2 2007/2/28, Michael Crowl [EMAIL PROTECTED]: And, of course, as soon as I wrote that all out and sent it, I figured it out. The designer was using 1.2em, etc for font sizes, which meant

Re: [jQuery] Plugin wanted

2007-02-28 Thread Franck Marcia
I got it: autoexpander in interface. Franck. 2007/2/28, Franck Marcia [EMAIL PROTECTED]: Hi all, Sorry for this request but I've looked for a plugin I saw which auto-sizes an input or a textarea according to its content. I looked at the plugins' page, in the mailing list archive. No way to

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread agent2026
Shouldn't this just be tied to the close link? [-Stash-] wrote: A simple Cancel link would be superb - I think this is an essential addition! Torbjorn Tornkvist wrote: I've been using Imagebox and are missing a way of Stopping/Unloading it. Also, a hook when Imagebox closes down

Re: [jQuery] Plugin wanted

2007-02-28 Thread Stefan Kilp [sk-software]
Hi, take a look here http://interface.eyecon.ro/demos an try Autoexpander demo Best regards, Stefan Kilp Hi all, Sorry for this request but I've looked for a plugin I saw which auto-sizes an input or a textarea according to its content. I looked at the plugins' page, in the

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread Mike Alsup
One thing I would really like to see added (which I've done with help my modded version) is circular browsing - 'next' on last image loads first image, and vice versa +1 ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread [-Stash-]
Currently the Close link doesn't appear until the content is loaded - if the content takes a long time to load, you can't get rid of the TB. I'd like a nice juicy Cancel button just beneath (or wherever) the loading animation s I can change my mind and not wait for the content to be loaded.

Re: [jQuery] JS Source code Formatter - Anyone know of any good ones

2007-02-28 Thread Mark Lincoln
Try this. http://www.jcay.com/javascript-code-improver.html Mark On 2/28/07, Tsz Ming WONG [EMAIL PROTECTED] wrote: maybe http://astyle.sourceforge.net/ ? you might need to tweak the settings for javascript. On 2/28/07, Christof Donat [EMAIL PROTECTED] wrote: Hi, Chili, based on

Re: [jQuery] .next() bug?

2007-02-28 Thread Brian Miller
I see what you're saying. You're worried that because there's a difference here, there might be a differnce in a non-broken document that we haven't found yet. Personally, I wouldn't worry about it until/unless there's an actual use case that's having this same problem on a non-broken DOM. -

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread Klaus Hartl
[-Stash-] schrieb: A simple Cancel link would be superb - I think this is an essential addition! clicking on the overlay while loading will abort loading... that its not working is a bug on my side. is that sufficient? -- Klaus ___ jQuery mailing

Re: [jQuery] nth-child selector

2007-02-28 Thread Angelo Sozzi
I see a few problems: div:nth-child(2) will only select the 2nd child NOT every odd child. Try the following: $(#search-results div:nth-child(odd):gt(1)).addClass(stripes); that should select all your odd child divs except the first two and give them the class stripes Dan Eastwell wrote:

[jQuery] What's wrong with this code?

2007-02-28 Thread Rick Faircloth
Ok. so I had working jQuery/AJAX code, but I started tinkering with it and now it's not working. see anything wrong with what's below? Thanks! Rick script type=text/javascript $(document).ready(function(){ $(#User_ID).change( function() { var User_ID = $(this).val();

Re: [jQuery] What's wrong with this code?

2007-02-28 Thread Mike Alsup
Looks like your quotes are wrong: mycfpage.cfm?User_ID= + User_ID ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] What's wrong with this code?

2007-02-28 Thread Michael E. Carluen
Rick, Use: $(#mycfpagecontent).load(mycfpage.cfm?User_ID= + User_ID); Look at where the quotes close. You are concatenating the var at the end. Michael _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rick Faircloth Sent: Wednesday, February 28, 2007

[jQuery] ImageBox Problem - close and loading images not displaying

2007-02-28 Thread Janet Weber
Hi I can't get the close and loading images to display and would like to know if that is a bug or a directory path problem on my part? If the latter I would like to know which directory Imagebox is expecting to find the files in? Thank you, Janet Weber

Re: [jQuery] jQuery/Validation plugin on FireBug - Couldn't catch events

2007-02-28 Thread Jörn Zaefferer
R. Rajesh Jeba Anbiah schrieb: I'm just trying to walk through the script http://jquery.bassistance.de/validate/demo-test/validate-demo.html with FireBug. FireBug breaks when loading the page; but not on any events, say when submitting the form or when the error text is been added. Is there

Re: [jQuery] Q: best way to create dynamic content?

2007-02-28 Thread Jörn Zaefferer
nrwsteff schrieb: so jörn, if you can release your plugin it would be perfect and i will give it a try. Here we go: http://bassistance.de/jquery-plugins/jquery-plugin-format/ You are basically the first user, so any feedback is highly appreciated! -- Jörn Zaefferer http://bassistance.de

Re: [jQuery] jquery accordion plugin settings help

2007-02-28 Thread Jörn Zaefferer
schnuck schrieb: but it causes exactly the same problem as the one you suggested: the smooth hiding animation gets lost. a click on another panel simply closes the open panel immediately and slide opens the new panel. the whole closing animation sequence is supressed. anyone knows why? The

[jQuery] taconite question

2007-02-28 Thread Paul
I'm experimenting with the Taconite Plugin (http://www.malsup.com/jquery/taconite) and I could use a nudge in the right direction. When I click a navigation link there is a series of cosmetic changes made to the screen. In addition to these interface changes, which occur quite nicely using

Re: [jQuery] What's wrong with this code?

2007-02-28 Thread Christopher Jordan
Rick, are you escaping the pound signs in your CF code? Chris Rick Faircloth wrote: Ok... so I had working jQuery/AJAX code, but I started tinkering with it and now it's not working... see anything wrong with what's below? Thanks! Rick script type=text/javascript

[jQuery] .attr(href, javascript:void(0);) not working

2007-02-28 Thread rip747
I'm trying to rewrite a plugin that I wrote a while back since the code has been lost. Basically this plugin makes it easy to have a link open in a popup window I'm having a problem preventing a new window from opening when using javascript:void(0). Below is the code. jQuery.fn.PopUpWindow =

Re: [jQuery] taconite question

2007-02-28 Thread Mike Alsup
When I click a navigation link there is a series of cosmetic changes made to the screen. In addition to these interface changes, which occur quite nicely using Taconite, I would usually use a .load() function to load another template into the main div, and this is what confuses me. Should I

Re: [jQuery] .attr(href, javascript:void(0);) not working

2007-02-28 Thread Matt Oakes
If your just trying to make the browsers default action from happening just use return false (No quotes). Works well for me. Sorry if thats not what your asking. Matt rip747 wrote: I'm trying to rewrite a plugin that I wrote a while back since the code has been lost. Basically this plugin

Re: [jQuery] taconite question

2007-02-28 Thread Nathaniel See
I use Taconite quite a bit for combining multiple ajax calls into a single one. Is there a reason why you couldn't combine the Load function that takes place after the initial and instead use Taconite to have that take place during the initial call. Load() just replaces the contents of an

Re: [jQuery] .attr(href, javascript:void(0);) not working

2007-02-28 Thread Petruzzi, Tony
I tried to do that and it still didn't work. I've been at this for quite sometime now. Could someone on the outside, try the code in their browser and tell me if they get the same error? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt Oakes Sent:

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread Sam Collett
On 28/02/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: as for feature, proportional dimensions is a must IMO. There is no sense fixing width and height of thickbox in today's multitude of screen sizes... What exactly do you mean by that. Currently if an image is too large for the

Re: [jQuery] .attr(href, javascript:void(0);) not working

2007-02-28 Thread John Resig
Don't use the javascript:void(0) stuff at all, trying this instead: So remove this line: $this.attr(href, javascript:void(0);); And change this: $this.bind(click, function(){ var name = PopUpWindow + index;

Re: [jQuery] .attr(href, javascript:void(0);) not working

2007-02-28 Thread Matt Oakes
Ok try this inplace of what you have at the minute: $(this).click(function(){ return false; }); Thats what I meant before but i guess i didn't make myself clear. Matt Petruzzi, Tony wrote: I tried to do that and it still didn't work. I've been at this for quite sometime now. Could

Re: [jQuery] taconite question

2007-02-28 Thread Mike Alsup
I always try to combine as many separate operations into a single taconite operation. I'm a noob, so keep that in mind. That's the best way to do it, Nathaniel. Don't make two requests if you can get what you need with one! ___ jQuery mailing list

Re: [jQuery] .attr(href, javascript:void(0);) not working

2007-02-28 Thread Petruzzi, Tony
I figured it out. There was nothing wrong with my code. Seems that I might have discovered a bug. Seems that using the ~= selector doesn't work right. If I'm getting it right, it should look though a spaced separated list and see if that list contains the exact value. So if I have:

Re: [jQuery] .attr(href, javascript:void(0);) not working

2007-02-28 Thread Klaus Hartl
John Resig schrieb: Don't use the javascript:void(0) stuff at all, trying this instead: So remove this line: $this.attr(href, javascript:void(0);); And change this: $this.bind(click, function(){ var name = PopUpWindow + index;

Re: [jQuery] .attr(href, javascript:void(0);) not working

2007-02-28 Thread John Resig
That's correct. jQuery does not support the ~= selector. You can find it located here: http://docs.jquery.com/Selectors#Not_supported It wasn't listed in the list of supported selectors - but I just added it to the list of Not Supported selectors, to make it clear. --John On 2/28/07, Petruzzi,

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-28 Thread Torbjorn Tornkvist
Klaus Hartl wrote: [-Stash-] schrieb: A simple Cancel link would be superb - I think this is an essential addition! clicking on the overlay while loading will abort loading... that its not working is a bug on my side. is that sufficient? -- Klaus Parhaps, Thickbox handles this

Re: [jQuery] Odd include ordering bug w/ Tablesorter and WrapInner

2007-02-28 Thread Christian Bach
2007/2/26, Jonathan Freeman [EMAIL PROTECTED]: Haven't had the time to debug this but if you include the jquery-plugin-wrapinner.js before the jquery.tablesorter.js (see below) then the wrapinner will not work. However, reverse the two and both work successfully. This is a bit unclear, but

Re: [jQuery] What's wrong with this code?

2007-02-28 Thread Rick Faircloth
Hi, Chris. The pound signs don't seem to be affecting the CF. Rick From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Christopher Jordan Sent: Wednesday, February 28, 2007 2:27 PM To: jQuery Discussion. Subject: Re: [jQuery] What's wrong with this code? Rick, are you escaping

Re: [jQuery] .attr(href, javascript:void(0);) not working

2007-02-28 Thread Petruzzi, Tony
I figured it out. There was nothing wrong with my code. Seems that I might have discovered a bug. Seems that using the ~= selector doesn't work right. If I'm getting it right, it should look though a spaced separated list and see if that list contains the exact value. So if I have:

Re: [jQuery] Jqmodal problem with IE6

2007-02-28 Thread Dragan Krstic
This this thing kills me. Arg. 2007/2/28, Dragan Krstic [EMAIL PROTECTED]: No, it doesn't help. Only change is that I got an js error in IE that are not fired in FF. Screenshoot of error are attached. -- Dragan Krstić krdr http://krdr.ebloggy.com/ -- Dragan Krstić krdr

Re: [jQuery] What's wrong with this code?

2007-02-28 Thread Rick Faircloth
Thank, everyone. got it working! Rick From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael E. Carluen Sent: Wednesday, February 28, 2007 1:39 PM To: 'jQuery Discussion.' Subject: Re: [jQuery] What's wrong with this code? Rick, Use:

Re: [jQuery] Odd include ordering bug w/ Tablesorter and WrapInner

2007-02-28 Thread Jonathan Freeman
Hmmm, makes sense now with the wrapinner implementation within tablesorter. Sorry for the confusion, maybe this is better ... Wrap Inner works: script src=jquery.tablesorter.js type=text/javascript/script script src=jquery-plugin-wrapinner.js type=text/javascript/script Wrap Inner does not work:

Re: [jQuery] .attr(href, javascript:void(0);) not working

2007-02-28 Thread Petruzzi, Tony
Oh. When I download the jQuery cheat sheets it said that it was supported. Could be a mistake on their part. Is there anyway for this support to go into 1.1.3 :) It's actually is really useful. For those of us that program in CF, I can't count the amount of times I've used the ListFind

[jQuery] Testing

2007-02-28 Thread Christopher Jordan
Hi folks, It looks like my posts aren't getting through. So this is a test. -- http://www.cjordan.us ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] IE how I love thee - effects happening twice

2007-02-28 Thread Priest, James \(NIH/NIEHS\) [C]
OK - I finally got around to looking at things in IE (everything works great in FF) I'm using the fade (highlight) effect from the interface library and what happens is when the fade comes in - it fires twice. My script is about as simple as you can get: script type=text/javascript

Re: [jQuery] Testing

2007-02-28 Thread Matt Oakes
That one got through ;-) Christopher Jordan wrote: Hi folks, It looks like my posts aren't getting through. So this is a test. -- http://www.cjordan.us ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ No

[jQuery] Another Smegin' test

2007-02-28 Thread Christopher Jordan
Sorry folks, just testing... -- http://www.cjordan.us ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Replace text in array

2007-02-28 Thread Karl Rudd
In this case either html() or text() should work as there are no other HTML elements inside the span. As I said, in the each function this refer to the raw DOM node, that does not have a text() function. The text() function is part of jQuery, which acts as kind of a wrapper for the elements. The

  1   2   >