[jQuery] Re: Multiple Load Callback

2008-05-19 Thread Michael Geary
You can bundle up that logic in a clean way with code like this: function multiLoad( arglist, callback ) { var results = [], n = arglist.length; $.each( arglist, function( i, arg ) { $( arg[0] ).load( arg[1], arg[2], function() { results[i] = arguments; if(

[jQuery] Re: OT: Firefox 3 RC1 for Mac

2008-05-19 Thread Klaus Hartl
To starting the profile manager, open terminal and enter: /Applications/Firefox.app/Contents/MacOS/firefox -P Or start with a profile immediately: /Applications/Firefox.app/Contents/MacOS/firefox -P "firefox2" Replace "Firefox.app" with what you called the bundle for FF2. --Klaus On May 19,

[jQuery] Re: JQuery Tablesorter can't sort number in Coldfusion

2008-05-19 Thread Hamish Campbell
H... CF might be causing the problem, but you'll still be able to see it in the generated code. Can you compare the output with and without - the difference should give you a clue as to why it isn't working. On May 19, 11:59 pm, Bettina <[EMAIL PROTECTED]> wrote: > Hi > > Yeah of course. Her

[jQuery] Re: Fade out the whole page before loading next page

2008-05-19 Thread Hamish Campbell
You have to intercept clicks on links, store the href while the page fades then redirect to that address: $(document).ready(function(){ $('a').click(function() { var target = $(this).attr('href'); $('body').fadeOut('slow', function() { window.location = target;

[jQuery] Re: Multiple Load Callback

2008-05-19 Thread Hamish Campbell
If you use the 'data' object, you can keep this stuff attached to the relevant objects and out of the global namespace. On May 20, 9:07 am, FreeKill <[EMAIL PROTECTED]> wrote: > That would chain them all together though right, rather than fire them > all off at the same time? > > I was thinking o

[jQuery] Re: Fake ajax load

2008-05-19 Thread hubbs
This looks interesting. But the reason I need to use an iframe, is to get a wysiwyg to work. Wouldn't this defeat this purpose, as it is still loading it through ajax? On May 19, 8:45 pm, "Karl Rudd" <[EMAIL PROTECTED]> wrote: > Try the frameready pluginhttp://ideamill.synaptrixgroup.com/?p=6 >

[jQuery] Re: Fake ajax load

2008-05-19 Thread Karl Rudd
Try the frameready plugin http://ideamill.synaptrixgroup.com/?p=6 Karl Rudd On Tue, May 20, 2008 at 1:32 PM, hubbs <[EMAIL PROTECTED]> wrote: > > I need to load a page into an iframe, but I would like to have jquery > show a loading gif while the data is loading into the iframe. Is it > possibl

[jQuery] Fake ajax load

2008-05-19 Thread hubbs
I need to load a page into an iframe, but I would like to have jquery show a loading gif while the data is loading into the iframe. Is it possible, similar to loading ajax, that I can load the gif, only until the page is loaded, then hide it?

[jQuery] jQuery Column Filters Plugin Help

2008-05-19 Thread hubbs
I just found the really great Column Filters Plugin: http://plugins.jquery.com/project/ColumnFilters Right now, you can only use it with tables, and, the tern you are filter with, has to be the first thing within the , so, if you wanted to use a inside, or a link this won't work. I am intereste

[jQuery] Re: tooltip data?

2008-05-19 Thread Karl Swedberg
Hi Chris, I just updated the clueTip plugin to allow you to display data from a javascript function (or a string). It's not in a packaged release yet, but you can grab the file from the svn here: http://jqueryjs.googlecode.com/svn/trunk/plugins/cluetip/jquery.cluetip.js So, now you can do

[jQuery] Re: Checking a radio button

2008-05-19 Thread Karl Rudd
Remember to be careful how you mix the various quotes ' and ". The following should work. $('#Demo[value="hello there"]').attr('checked', true); Karl Rudd On Tue, May 20, 2008 at 11:33 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I may have spoken a little too soon. Karl, that was a gr

[jQuery] Re: Checking a radio button

2008-05-19 Thread [EMAIL PROTECTED]
I may have spoken a little too soon. Karl, that was a great solution, but what if the part of the value clause has a space in it? This isn't working for me ... $('#Demo[value=hello there]').attr('checked', true); nor is this ... $('#Demo[value="hello there"]').attr('checked', true); Any sugg

[jQuery] Re: Checking a radio button

2008-05-19 Thread Karl Rudd
Just remember that you shouldn't have more than one element on the page with the same id. For example is something that will cause problems: Karl Rudd On Tue, May 20, 2008 at 11:16 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Thanks, Karl. Your second solution was the one I was look

[jQuery] Re: Checking a radio button

2008-05-19 Thread [EMAIL PROTECTED]
Thanks, Karl. Your second solution was the one I was looking for. - Dave On May 19, 7:56 pm, "Karl Rudd" <[EMAIL PROTECTED]> wrote: > Assuming the following: > >   > > The following will "check" the radio button: > >   $('#Demo').attr('checked', true); > > If you _really_ need to ONLY check the

[jQuery] Re: Checking a radio button

2008-05-19 Thread Karl Rudd
Assuming the following: The following will "check" the radio button: $('#Demo').attr('checked', true); If you _really_ need to ONLY check the radio button if it's got an id="Demo" AND value="hello": $('#Demo[value=hello]') Karl Rudd On Tue, May 20, 2008 at 8:47 AM, [EMAIL PROTECTED]

[jQuery] Re: Checking a radio button

2008-05-19 Thread Jarques
Radio buttons can be checked by document.getElementById("Demo").checked = true; So I believe you can do the following on page load: $check = document.getElementById("Demo"); if ($check.checked == true) { Do what you want to do here. } On May 19, 3:47 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED

[jQuery] Fade out the whole page before loading next page

2008-05-19 Thread Anabelle
I need to add a simple effect to my website but I've been searching all afternoon with no luck, hope someone can help me. I need to add a Fade out effect to the entire page whe the user clicks a link leaving the current page. How can I do it?

[jQuery] Re: submit although validation fails

2008-05-19 Thread juro
Ok, found the error. I had the validation before the ajaxForm - this does not work. On May 19, 10:15 pm, juro <[EMAIL PROTECTED]> wrote: > Hi, > I am still struggeling with the my problem with the form although the > validation fails. I believe that this is because I have the action > attribute d

[jQuery] JQuery issue with sessions

2008-05-19 Thread mjs
I have a PHP form in which a session variable is set when the form is loaded. I use the jquery form plugin to handle the submit button. It works great if I disable javascript and submit the form, but if it is enabled, the session (and all variables set within it) is cleared. I looked for jquery

[jQuery] Re: Multiple Load Callback

2008-05-19 Thread FreeKill
That would chain them all together though right, rather than fire them all off at the same time? I was thinking of doing something maybe like this... var processesCompleted = 0; var processesTotal = 4; $("#div1").load( "scripts/generateA.php", {VAR: var}, function( ) { processesCompleted++

[jQuery] Checking a radio button

2008-05-19 Thread [EMAIL PROTECTED]
Hi, When my page loads, I'd like to check a radio button whose ids are "Demo" and whose value is "hello". How do I do this with JQuery? Thanks, - Dave

[jQuery] Re: add a link after page load?

2008-05-19 Thread thekman
sorry, that last bit of code has append not add in the line below. however i'm still stuck, the link does nothing when clicked on until a page reload... $('#hiddenleft').append(''+boxName+''); On May 19, 11:07 pm, thekman <[EMAIL PROTECTED]> wrote: > Hi all, > I am trying to add links to a div

[jQuery] Re: resetForm() behaviour in IE differs from FF and Opera regarding hidden fields

2008-05-19 Thread Mike
> Using jQuery 1.2.3 and the form plugin 2.08 (I'm pretty sure 2.10 will > behave the same way), I notice that under IE (6 and 7), resetForm() > reset every field with their initial state including hidden fields. > Under FF 2.0.0.14 and opera 9.27 & 9.5 the hidden fields aren't reset. > > Is it a

[jQuery] Re: bind click event equal to mouseover

2008-05-19 Thread Wizzud
One way is to make the LI's mouseover add a class, the mouseout remove that class, then set css to do what you want to the A element... $('li').hover( function(){ $(this).addClass('x') } , function(){ $(this).removeClass('x') } ); style... li.x a {color:#ff9900;} On May 19, 1:34

[jQuery] add a link after page load?

2008-05-19 Thread thekman
Hi all, I am trying to add links to a div when another div is clicked. The links get added fine, but they do not work when clicked. However i am also saving the value to a cookie & display them on page refresh, at this stage they do work as expected. Any ideas on how I can get the links to work ju

[jQuery] Re: jqDock can embed flash/video object?

2008-05-19 Thread Wizzud
Not at present ... and to be honest it hasn't been considered. On May 19, 4:53 am, Davis <[EMAIL PROTECTED]> wrote: > Hi all, > > Beside img object, is it possible to embed a flash/video object? eg > swf or youtube video ? > > Thanks/Davis.

[jQuery] Re: [validate] submit although validation fails

2008-05-19 Thread Jörn Zaefferer
If the form is submitted then most likely some error occurs during validation which prevents the submit to be prevented. You can set the debug-option to true to always prevent the form submit. Otherwise: Please post a testpage. Jörn On Mon, May 19, 2008 at 10:15 PM, juro <[EMAIL PROTECTED]> wr

[jQuery] Re: Tooltip IE area map Patch

2008-05-19 Thread Jörn Zaefferer
I think I finally found a fix for the issue. Please give the latest revision a try: http://dev.jquery.com/view/trunk/plugins/tooltip/ Once I got a confirmation that the issue is really gone, I'll create a new release. Jörn On Mon, May 19, 2008 at 4:21 AM, ferdjuan <[EMAIL PROTECTED]> wrote: > >

[jQuery] Re: Release: jQuery Validation plugin 1.3

2008-05-19 Thread Jörn Zaefferer
Okay, that won't work as focusInvalid gets the wrong state when called via success-option. Its not a great solution, but could work better: Replace validator.focusInvalid with $("#fteste").valid(); That validates the whole form and should trigger focusInvalid with the appropiate state. Jörn On

[jQuery] Re: Easy way to filter and sort a list

2008-05-19 Thread hubbs
I need something that will filter a list that is already displayed. So, if I had a list of 100 names, I would type in the input box, and my list would start to be filtered from the list that is already there, so that I can quickly see the item(s) that match what I typed. On May 17, 1:55 am, Eric

[jQuery] Re: OT: Firefox 3 RC1 for Mac

2008-05-19 Thread Collin Allen
Firefox 2 and 3 can co-exist so long as their app bundles are in separate places (or even just named differently in the same place). For example, I have FF 2.0 in /Applications, and FF 3.0rc1 in ~/ Applications/, my user's apps folder. They share the same profile, so you'll be doing a lot of exte

[jQuery] Re: Tooltips

2008-05-19 Thread Jörn Zaefferer
Actually the code is already here: http://dev.jquery.com/view/trunk/plugins/tooltip/jquery.formtip.js with ugly css: http://dev.jquery.com/view/trunk/plugins/tooltip/jquery.formtip.css Requires the delegate plugin: http://dev.jquery.com/view/trunk/plugins/delegate/jquery.delegate.js Jörn On Mo

[jQuery] Re: [AutoComplete]

2008-05-19 Thread Jörn Zaefferer
Rather undocumented: The formatItem-option can be used as a filter. If it returns false for a value (instead of the formatted value), the value isn't displayed. Jörn On Sun, May 18, 2008 at 9:36 PM, ChrisLongden <[EMAIL PROTECTED]> wrote: > > Hi, > > I am using the brilliant autocomplete functio

[jQuery] Re: Tooltips

2008-05-19 Thread Jörn Zaefferer
I've have something similar as a plugin on a project. Its not polished at all, but already works with keyboard events (reacts to focus/blur instead of click). If interested, I'll upload the current version to give you a starting point. Jörn On Sun, May 18, 2008 at 11:37 AM, MartinS <[EMAIL PROT

[jQuery] Re: Multiple Load Callback

2008-05-19 Thread Hamish Campbell
This has come up a few times - pretty sure there isn't a super clean way of doing it, but I'd probably prefer something like this: $("#div1").load( "scripts/generateA.php", {VAR: var}, checkLoaded ); $("#div2").load( "scripts/generateB.php", {VAR: var}, checkLoaded ); $("#div3").load( "scripts/ge

[jQuery] Re: Modal overlay for specific page section

2008-05-19 Thread Alexandre Plennevaux
well Jake, even the greatest jquery plugins need real-world examples to advocate their usefulness, so that other users like you can be aware of it. If at all possible, return the favour, and make sure to send Mike a URL of your real world use of his plugin can be found. Cheers, a. On Mon, May 19

[jQuery] Re: Modal overlay for specific page section

2008-05-19 Thread Jake McGraw
Gawd, I am one lazy developer, Mike goes through the trouble of creating a well laid out site with plenty of tutorials and I totally miss "Element Blocking". Thanks Alexandre + Mike! - jake On Mon, May 19, 2008 at 4:49 PM, Alexandre Plennevaux <[EMAIL PROTECTED]> wrote: > sure jake, there is th

[jQuery] Re: Multiple Load Callback

2008-05-19 Thread Alexandre Plennevaux
here is how i would try it, simply using the load() function built-in callback parameter $("#div1").load( "scripts/generateA.php", {VAR: var} ,function(){ $("#div2").load( "scripts/generateB.php", {VAR: var}, function(){ $("#div3").load( "scripts/generateC.php", {VAR: var}, function(){ $("#div4").

[jQuery] Re: Modal overlay for specific page section

2008-05-19 Thread Alexandre Plennevaux
sure jake, there is the excellent blockUI plugin http://www.malsup.com/jquery/block/ On Mon, May 19, 2008 at 10:45 PM, Jake McGraw <[EMAIL PROTECTED]> wrote: > > Hello all, > > I'd like to know if a jQuery plugin exists that allows for creating a > modal overlay for a specific element of a page

[jQuery] Multiple Load Callback

2008-05-19 Thread FreeKill
Hi, I'm thinking there is something I'm just overlooking, but I hope someone can help... I have a set of load calls that are each made at document load: $("#div1").load( "scripts/generateA.php", {VAR: var} ); $("#div2").load( "scripts/generateB.php", {VAR: var} ); $("#div3").load( "scripts/gene

[jQuery] Modal overlay for specific page section

2008-05-19 Thread Jake McGraw
Hello all, I'd like to know if a jQuery plugin exists that allows for creating a modal overlay for a specific element of a page (say a DIV). The overlay would completely cover the section and prevent click-throughs or any other interaction with the elements within the section. Note: I've seen the

[jQuery] [form plugin] resetForm() behaviour in IE differs from FF and Opera regarding hidden fields

2008-05-19 Thread Nicolas Tostin
Hi, Using jQuery 1.2.3 and the form plugin 2.08 (I'm pretty sure 2.10 will behave the same way), I notice that under IE (6 and 7), resetForm() reset every field with their initial state including hidden fields. Under FF 2.0.0.14 and opera 9.27 & 9.5 the hidden fields aren't reset. Is it a bug or

[jQuery] [validate] submit although validation fails

2008-05-19 Thread juro
Hi, I am still struggeling with the my problem with the form although the validation fails. I believe that this is because I have the action attribute defined in the form. Can this cause the form to be submitted although not validated?

[jQuery] Re: Autocomplete - is bgiframe required?

2008-05-19 Thread Jörn Zaefferer
Fixed in http://dev.jquery.com/changeset/5633 Jörn On Mon, May 19, 2008 at 9:08 PM, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Thanks for the ticket Aaron, gonna fix that asap. > > Jörn > > On Sat, May 17, 2008 at 4:24 PM, Aaron Barker <[EMAIL PROTECTED]> wrote: >> >> I just submitted a bug on

[jQuery] Re: OT: Firefox 3 RC1 for Mac

2008-05-19 Thread Jake McGraw
Check out http://ejohn.org/blog/sexy-firefox-3/ - jake On Mon, May 19, 2008 at 4:18 PM, Shelane <[EMAIL PROTECTED]> wrote: > > Is there a way to install Firefox 3 RC1 without affecting FF2 on a > Mac. > > The release notes have this message: Please note that installing > Firefox 3 will overwrite

[jQuery] OT: Firefox 3 RC1 for Mac

2008-05-19 Thread Shelane
Is there a way to install Firefox 3 RC1 without affecting FF2 on a Mac. The release notes have this message: Please note that installing Firefox 3 will overwrite your existing installation of Firefox on Mac OS X and Linux. I'm guessing that's if you simply install it into the Applications folder

[jQuery] Re: submit event confusion

2008-05-19 Thread August Lilleaas
Thanks a lot mister, that event was exactly what I needed, everything works smoothly now =) On May 19, 7:01 pm, Mike <[EMAIL PROTECTED]> wrote: > > > $(this).submit(function(){ > > >     $(this).find(":input.unclicked").each(function(){ > > >        this.value = ""; > > >     }); > > >     $.post

[jQuery] atributes of picture.

2008-05-19 Thread [EMAIL PROTECTED]
Hi, I would like to know how to capture atributes of a picture using jquery? (Atributes of picture and no of tag) Atributes like width and height Thanks...

[jQuery] Atribute of picutre

2008-05-19 Thread Bruno Eustáquio F. Andrade
Hi, I would like to know how to capture atributes of a picture using jquery? (Atributes of picture no of tag) Atributes like width and height.. Thanks

[jQuery] Atribute of picutre

2008-05-19 Thread [EMAIL PROTECTED]
Hi, I would like to know how to capture atributes of a picture using jquery? (Atributes of picture no of tag) Atributes like width and height.. Thanks

[jQuery] tooltip data?

2008-05-19 Thread Chris Hall
Does anyone know if a plugin exists that can display a tooltip from information received via ajax or from the output of a javascript function? I see a few that use ajax but I'm unable to modify them to also display tooltip data from a javascript function. Many thanks for the help.

[jQuery] Re: jCarousel - Has anyone implemented link anchors?

2008-05-19 Thread Ariel Flesler
You can do that by combining LocalScroll[1] and SerialScroll[2] [1]http://flesler.blogspot.com/2007/10/jquerylocalscroll-10.html [2]http://flesler.blogspot.com/2008/02/jqueryserialscroll.html Note that changing the address bar will scroll the window, unless the id/name doesn't exist. -- Ariel F

[jQuery] Re: Very basic animation of an image is jerky (not smooth). Am I doing something wrong?

2008-05-19 Thread ripple
FYI. Fails to execute in IE 6. Ariel Barreiro <[EMAIL PROTECTED]> wrote: I am new to jquery but an experience developer. Here's the code actually running: http://guilespi.dyndns.org/jquery/bounceimage/ CSS: http://guilespi.dyndns.org/jquery/bounceimage/bounce.css JS: http://guil

[jQuery] Re: Autocomplete - is bgiframe required?

2008-05-19 Thread Jörn Zaefferer
Thanks for the ticket Aaron, gonna fix that asap. Jörn On Sat, May 17, 2008 at 4:24 PM, Aaron Barker <[EMAIL PROTECTED]> wrote: > > I just submitted a bug on this a few days ago, which also contains a > fix for it > > http://dev.jquery.com/ticket/2866 > > Copied here for posterity > > Line 634 i

[jQuery] Re: jscrollPane scroll to can't find first element

2008-05-19 Thread pedalpete
Thanks Ariel, I forgot to mention, but I had also tried the [0].scrollTo, and that didn't work either. I've also just tried [code] var firstList = $('#holder .list:first'); $("#holder").jScrollPane(function(response){ ("#holder").scrollTo(firstList);

[jQuery] Tablesorter plugin problems with zebra stripes

2008-05-19 Thread asle
Hi The tablesorter 2.0 plugin is very nice and works great but I don´t really get how the zebra widget works. I do not get alternate colors on the table. I have a style for ".odd" and ".even" in CSS. I looked at the demos and it seems that the TRs are assigned "odd" and "even" but that does not ha

[jQuery] Very basic animation of an image is jerky (not smooth). Am I doing something wrong?

2008-05-19 Thread Ariel Barreiro
I am new to jquery but an experience developer. Here's the code actually running: http://guilespi.dyndns.org/jquery/bounceimage/ CSS: http://guilespi.dyndns.org/jquery/bounceimage/bounce.css JS: http://guilespi.dyndns.org/jquery/bounceimage/bounce.js The first vector is generally very jerky. S

[jQuery] Re: cluetip plugin and IE6

2008-05-19 Thread Theodore Ni
Include the bgiframe plugin in your section: http://plugins.jquery.com/project/bgiframe On Mon, May 19, 2008 at 2:13 PM, cfdvlpr <[EMAIL PROTECTED]> wrote: > > Has anyone else noticed that in IE6, select menus show up in front of > the cluetip? Is there a fix for this? > -- Ted

[jQuery] Re: Autocomplete - access to events

2008-05-19 Thread Jörn Zaefferer
Ok, that makes sense. Well, the same code is responsible for creating and managing that list. Optimizing that isn't trivial, as it wouldn't have much use when you have a few autocompletes on one page where the data has no overlap. Jörn On Mon, May 19, 2008 at 8:22 PM, rolfsf <[EMAIL PROTECTED]>

[jQuery] Re: Autocomplete - access to events

2008-05-19 Thread rolfsf
Thanks Jörn, I'll pass this info on... We tend to run into performance issues with this because we might typically get over 20 autocompletes on the same page, and they're pulling from a list of about a thousand items. A lot is happening on the page (in the background) so we look for ways to opti

[jQuery] Re: I have a nice text accordion menu, but I just need a little assistance.

2008-05-19 Thread tegansnyder
Resolved. What I had to do is: jQuery('#theMenu').activate(0); jQuery('#xtraMenu').activate(0); Activate the first top level first Then activate the sublevel. Thanks for your help. On May 19, 11:58 am, ripple <[EMAIL PROTECTED]> wrote: > Ok so your accordion's are being set o

[jQuery] cluetip plugin and IE6

2008-05-19 Thread cfdvlpr
Has anyone else noticed that in IE6, select menus show up in front of the cluetip? Is there a fix for this?

[jQuery] Re: Autocomplete - access to events

2008-05-19 Thread Jörn Zaefferer
None of that is trivial out-of-the-box. The last point sounds like an optimization that isn't really necessary unless you experienced an actual performance hit. The second one isn't too hard to implement: Take a look at the source, around this line: http://dev.jquery.com/browser/trunk/plugins/aut

[jQuery] Re: Validate Plugin - Message customization with metadata

2008-05-19 Thread Jörn Zaefferer
Just use "messages" for embedding messages as metadata. The odds of adding a method "messages" are extremely low, and once its released, I'll update the docs accordingly. Jörn On Fri, May 16, 2008 at 7:05 PM, Dane <[EMAIL PROTECTED]> wrote: > > -> "Avoiding the conflict between a method "message

[jQuery] Re: second time jquery is included, kills previously called plugins

2008-05-19 Thread Shelane Enos
That was perfect. Thanks. On 5/19/08 8:00 AM, "Ariel Flesler" <[EMAIL PROTECTED]> wrote: > > //include first > > jQuery(function( $ ){ >// $ will be the first jQuery >$('#bodyframe').corner('tr'); > }); > > // include second > > You can also use jQuery.noConflict(); > > Cheers >

[jQuery] Re: Javascript of jQuery?

2008-05-19 Thread Michael Geary
NOW you tell us you're an experienced programmer... :-) I don't know about this specific book or the other one you ordered, but a lot of these JavaScript introductions are written for people who've never written a line of code. For someone with programming experience, I recommend David Flanagan'

[jQuery] [News] Tutorial: Working with Events, part 2

2008-05-19 Thread Karl Swedberg
Hi everyone, Just wanted to let you know that I posted a new tutorial on learningjquery.com: Working with Events, part 2. This tutorial first shows how to use .clone(true) to clone events along with elements, and then it explains event re-binding and unbinding with a quick look at event

[jQuery] Re: submit event confusion

2008-05-19 Thread Mike
> > $(this).submit(function(){ > > $(this).find(":input.unclicked").each(function(){ > >this.value = ""; > > }); > > $.post(this.action, $(this).serialize()); > > return false; // <-- stop native browser submit > > > }); > > Ah, didn't know you could post forms 'by hand' li

[jQuery] Re: I have a nice text accordion menu, but I just need a little assistance.

2008-05-19 Thread ripple
Ok so your accordion's are being set on 3 seperate id's #theMenu #xtraMenu #xtraMenu2 Did you try something like this? jQuery('#xtraMenu').activate(0); tegansnyder <[EMAIL PROTECTED]> wrote: ripple, First I would like to say thanks for the quick response. I have tried

[jQuery] Re: submit event confusion

2008-05-19 Thread August Lilleaas
As always, don't blame the framework ; ) The reason it doesn't work is because the form is an ajaxSubmit form. The values are cleared out nicely when not hooking the form up with ajaxSubmit. Using The Ajax Submit Plugin, .http://www.malsup.com/ jquery/form/. So, I tried doing something this - ht

[jQuery] Re: submit event confusion

2008-05-19 Thread August Lilleaas
> $(this).submit(function(){ >     $(this).find(":input.unclicked").each(function(){ >        this.value = ""; >     }); >     $.post(this.action, $(this).serialize()); >     return false; // <-- stop native browser submit > > }); Ah, didn't know you could post forms 'by hand' like that, thanks!

[jQuery] jCarousel - Has anyone implemented link anchors?

2008-05-19 Thread [EMAIL PROTECTED]
Hello I'd love to be able to link to specific pages in a slideshow using anchors? For example: http://www.example.com/slideshow.html#3 - show third page Also, it would be great if the browser address bar reflected the slide being displayed. Has anyone implemented this? I haven't found any

[jQuery] Re: I have a nice text accordion menu, but I just need a little assistance.

2008-05-19 Thread tegansnyder
ripple, First I would like to say thanks for the quick response. I have tried your suggestions. It works for the top level menus perfectly, but I wanted to activate the sub-level - nested menus? On May 19, 11:42 am, ripple <[EMAIL PROTECTED]> wrote: > Did you try? > > jQuery('#theMenu').activ

[jQuery] Re: What is the purpose of th jcarousel this.funcResize() function?

2008-05-19 Thread Jeff Kenny
I noticed this message after I posted mine, but apparently this "this.funcResize()" function is also what's causing IE 6 and 7 to scrollback when an item in the list is clicked. Here's my message: http://groups.google.com/group/jquery-en/browse_thread/thread/188eed4ee3d91e80/79939adb21fd4d30?lnk=

[jQuery] Re: Get input value from a loaded page

2008-05-19 Thread wick
Do you have an example page? As ferdjuan mentioned, the usual issue is with the timing - i.e. your hidden input #counter & its value aren't available until to the parent page until after your ajax .load() finishes up. In terms of troubleshooting, you don't need to echo your php variable because

[jQuery] Re: I have a nice text accordion menu, but I just need a little assistance.

2008-05-19 Thread ripple
Did you try? jQuery('#theMenu').activate(0); jQuery('#theMenu').activate(1); Treat the accordions as elements in an array. 0 = 1st, 1 = 2nd etc... tegansnyder <[EMAIL PROTECTED]> wrote: Hello Everyone, I have a built a nice accordion style menu and need a little assist

[jQuery] I have a nice text accordion menu, but I just need a little assistance.

2008-05-19 Thread tegansnyder
Hello Everyone, I have a built a nice accordion style menu and need a little assistance. You can see it in action at http://www.tegdesign.com/menu/ Currently I’m having it open the first element by placing the following code in the jQuery ready function: jQuery('#theMenu').activate(0); What I

[jQuery] Re: submit event confusion

2008-05-19 Thread Mike
> Here's a paste with the code in question:http://pastie.org/199544 $(this).submit(function(){ $(this).find(":input.unclicked").each(function(){ this.value = ""; }); $.post(this.action, $(this).serialize()); return false; // <-- stop native browser submit });

[jQuery] Re: radio button value

2008-05-19 Thread Mike
>var t = $("input[name='mem_type']").val(); var t = $("input[name='mem_type']:checked").val();

[jQuery] jQuery parsing ColdFusion 8 JSON

2008-05-19 Thread ajpiano
don't know if anyone has encountered this before, but I'm using CF8 components to return JSON to my applications, but even when i specify "dataType:'json'" on my ajax requests in JS, ColdFusion returns something along the lines of the following:

[jQuery] Re: attr('form') not work in firefox

2008-05-19 Thread Peter Edwards
I don't think it is correct to call this an attribute, as this implies that you can specify it in the HTML (it is not an allowed attribute in the W3C specification). It should be a cross-browser property of all form elements though. on 19/05/2008 15:54 Ariel Flesler said:: > No, you're right.

[jQuery] submit event confusion

2008-05-19 Thread August Lilleaas
Hello there, Got a question regarding the submit event. Got a script that adds text inside text fields when the page loads. There's probably a word for this, but I'm not aware of any, so let's call it "in-line form labels". You've probably seen it before - a name field which says "Enter your name

[jQuery] Re: Ajax doesn't work on Opera Mobile(partially supports ActiveXObject)

2008-05-19 Thread Pyrolupus
Takayoshi Fujiki wrote: > I found that Ajax function of jQuery doesn't work with Opera Mobile > 8.7(on Advanced [es] W-ZERO3), and I added a workaround for this > problem to jQuery code as follows. Then it worked on the platform. > > --- jquery-1.2.3.orig.js 2008-05-16 16:19:36.0 +090

[jQuery] Re: Release: jQuery Validation plugin 1.3

2008-05-19 Thread Alexsandro_xpt
Hi Jörn Zaefferer I'm again.. Take a look http://blog.alexsandro.com.br/aa.htm I do it what you tell me but, It dont work, I dont know what more I do. validator.focusInvalid() like's, dont fire very well. What more do? Thanks in advance On 13 maio, 14:26, "Jörn Zaefferer" <[EMAIL PROTECTE

[jQuery] radio button value

2008-05-19 Thread Rick Pasotto
How do I get the current value of a radio button? This is my html: and the javascript: function showval() { var t = $("input[name='mem_type']").val(); alert("mem_type = " + t); } $(function() { $("input[name='mem_type']").change(showval); }); This always gives me 'regular'.

[jQuery] Re: clueTip Plugin - Loading specific DIV ID in external html

2008-05-19 Thread Aaron
Also just wondering if it was possible/easier to have the tip show in the center of the screen? On May 19, 10:59 am, Aaron <[EMAIL PROTECTED]> wrote: > Awesome! > > Thank you s much for helping me out and looking into the > posotioning issue for me! :) > > On May 14, 12:46 pm, Karl Swedber

[jQuery] Re: clueTip Plugin - Loading specific DIV ID in external html

2008-05-19 Thread Aaron
Awesome! Thank you s much for helping me out and looking into the posotioning issue for me! :) On May 14, 12:46 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi Aaron, > > You're too kind. > The first question I can answer right away. The second one is probably   > going to involve more w

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Brandon Aaron
We've fixed several specific issues in dealing with ASP.Net's AJAX framework in the past. As far as I know to date we play nice with ASP.Net. -- Brandon Aaron On Mon, May 19, 2008 at 10:12 AM, Mike <[EMAIL PROTECTED]> wrote: > > I used ASP.NET Ajax to make webmethod calls all the time and I kno

[jQuery] Re: attr('form') not work in firefox

2008-05-19 Thread Brandon Aaron
1.2.4 is available ... just not the release notes :) http://code.jquery.com/jquery.js -- Brandon Aaron On Mon, May 19, 2008 at 9:54 AM, Ariel Flesler <[EMAIL PROTECTED]> wrote: > > No, you're right. Form elements (input, select, textarea, etc) do have > a 'form' attribute. I think it's even cros

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Mike
I used ASP.NET Ajax to make webmethod calls all the time and I know some other frameworks wont work with it that is why I was asking. MOOTOOLS doesnt play nice with ASP.NET Ajax. On May 19, 6:52 am, Steve D <[EMAIL PROTECTED]> wrote: > I have used both successfully together, but that because the

[jQuery] Re: Any way to avoid having this IE warning message?

2008-05-19 Thread Ariel Flesler
>if( $target.is('tr.rowData:text, tr.rowData textarea') ) $().is() doesn't support complex selectors (at least for now). Cheers -- Ariel Flesler http://flesler.blogspot.com/ On 17 mayo, 16:30, "Michael Geary" <[EMAIL PROTECTED]> wrote: > The idea with setTimeout is not to wait until the page l

[jQuery] Re: $.get work in firefox not IE?

2008-05-19 Thread Ariel Flesler
Just a quick guess, but, try: $.get( url,function(data) { $('#messages').html(data); }); Maybe the empty data hash which will generate an empty string of data, somehow annoys IE. Cheers -- Ariel Flesler http://flesler.blogspot.com/ On 17 mayo, 20:44, robert123 <[EMAIL PROTECTED]> wrote:

[jQuery] Re: jscrollPane scroll to can't find first element

2008-05-19 Thread Ariel Flesler
I THINK you need to do: $("#holder")[0].scrollTo(firstList); If you can't solve that part, you could check ScrollTo: http://flesler.blogspot.com/2007/10/jqueryscrollto.html Cheers -- Ariel Flesler http://flesler.blogspot.com/ On 18 mayo, 20:06, pedalpete <[EMAIL PROTECTED]> wrote: > Hey, >

[jQuery] Re: second time jquery is included, kills previously called plugins

2008-05-19 Thread Ariel Flesler
//include first jQuery(function( $ ){ // $ will be the first jQuery $('#bodyframe').corner('tr'); }); // include second You can also use jQuery.noConflict(); Cheers -- Ariel Flesler http://flesler.blogspot.com/ On 19 mayo, 10:16, Jason Huck <[EMAIL PROTECTED]> wrote: > Well, it's easy

[jQuery] Re: attr('form') not work in firefox

2008-05-19 Thread Ariel Flesler
No, you're right. Form elements (input, select, textarea, etc) do have a 'form' attribute. I think it's even cross-browser. Your code WILL work with the new version (1.2.4) which will be (hopefully) released soon. If you want to verify this will work, you can get it by doing a checkout: http://c

[jQuery] Re: An official list of interesting extensions of the selector engine??

2008-05-19 Thread Ariel Flesler
http://www.malsup.com/jquery/expr/ http://www.softwareunity.com/sandbox/JQueryMoreSelectors/ http://www.shauninman.com/archive/2008/05/05/css_qualified_selectors The first 2 need to be updated, to use functions instead of strings. They're not supported anymore since 1.2.2 to be compatible with Ad

[jQuery] Re: cycle plugin: rotation from outside elements

2008-05-19 Thread Mike
> I think this might be related to the pagerAnchorBuilder being called > multiple times (each time the slideshow is hidden and then reopened). What > can be done about this? Yeah, since you regenerate the pager controls each time startSlideShow is run you should add this before calling cycle: $(

[jQuery] Re: attr('form') not work in firefox

2008-05-19 Thread [EMAIL PROTECTED]
Thanks all, it must be my misunderstanding of the dom.

[jQuery] Re: JQuery and ASP.NET AJAX

2008-05-19 Thread Steve D
I have used both successfully together, but that because the client wanted me too. Personally I would prefer to use jQuery on it's own. I understand what it's doing much better than I understand what the ajax extensions are doing in .Net. It's also a much smaller download (a simple update panel i

[jQuery] Plugin like usableforms from ppk

2008-05-19 Thread LPA
Hi, Since a long time I use usableforms javascript script http://www.quirksmode.org/dom/usableforms.html to enhance my form pages. I'd like to know if there is a Jquery plugin which allow to do that. Thanx for your support

  1   2   >