[jQuery] ajaxform validation submission probs

2008-11-11 Thread lance123
Hi To All, I am trying to get the jquery ajaxform plugin to work with the validate plugin and I cannot seem to get submission right! It will not stop the submission process no matter what I do. :( Here is my test code...any help much appreciated. Thanks Lance $.validator.setDefaults({

[jQuery] Re: ajaxform validation submission probs

2008-11-11 Thread Jörn Zaefferer
Check this example: http://jquery.bassistance.de/validate/demo/ajaxSubmit-intergration-demo.html Use ajaxSubmit instead of ajaxForm and put that into the submitHandler. Jörn On Tue, Nov 11, 2008 at 9:19 AM, lance123 [EMAIL PROTECTED] wrote: Hi To All, I am trying to get the jquery ajaxform

[jQuery] Re: ajaxform validation submission probs

2008-11-11 Thread lance123
Thanks Jorn, I will give that a go :) Lance On Nov 11, 7:24 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: Check this example:http://jquery.bassistance.de/validate/demo/ajaxSubmit-intergration-de... Use ajaxSubmit instead of ajaxForm and put that into the submitHandler. Jörn On Tue, Nov

[jQuery] [ showcase ] lisapram.com - interactive barcode

2008-11-11 Thread Alexandre Plennevaux
Friends, That's it, i digested your comments, and now the website is launched. Thank you to john and every one of the jquery team for making such a great library. Special thanks to the jquery community for providing me with such useful feedback ! the website: http://lisapram.com/ my blog

[jQuery] jQuery timing out on page load

2008-11-11 Thread harryhobbes
Hi, I've got jQuery loading by default on my site. The library is only used on some pages in my site, however when I load a page that isn't using jquery (but still loading the file in the html header) Firefox pops up with a warning that jquery is timing out. Any suggestions? Cheers

[jQuery] 3D Carousel

2008-11-11 Thread ninofs
can anyone help me with 3D Carousel? have anyone make the horizontal to vertical? if it is, please tell me how is it to be done? please help me... thank you

[jQuery] Radio Buttons - checking a option by value.

2008-11-11 Thread cchurch
I'm trying to work out how to a check a radio button of a particular group based on it's value. Here's the html input type=radio value=2 name=gender/Female input type=radio value=1 name=gender/Male input type=radio value=0 name=gender/Not Specified // My current code.

[jQuery] .get question related to external variables

2008-11-11 Thread JLChafardet
Hello list, im trying to perform a very (not that easy to me it seems) easy task. Receive 2 variables from an onclick event, then animate, then execute a .get action. my code looks like this. . script type=text/javascript function getVars (str1,str2) { var tc_id =

[jQuery] onmouseclick get class

2008-11-11 Thread Alfredo Alessandrini
Hi, I've this html section: div id=chess-board div class=chess-board div id=chess-board_piece_1 class=r style=position: absolute; top: 301px; left: 301px;/ div id=chess-board_piece_2 class=n style=position: absolute; top: 301px; left: 258px;/ div id=chess-board_piece_3

[jQuery] How to do anything after animate finished

2008-11-11 Thread David .Wu
Hi everybody This my testing gallery slider, it will count image's amount, and prevent it not to outside the wrapper, but I got one problem, if user click button after the animation finished, it's done well, but if user click too fast, the js will not catch the left property in time correctly,

[jQuery] Re: window.close() in jQuery

2008-11-11 Thread Liam Potter
depends how the pop up was initiated and type of pop up. more details please. Debby wrote: Hello, can anyone explain how to close popup window programmatically in jQuery? Thanks in advance.

[jQuery] document Ready function in the Ajax Response

2008-11-11 Thread ravithokala
Hi, I have an issue with document.ready. I have a page which will make an ajax call. The response on the ajax call contains script which contains document.ready. The content in document.ready is getting executed successfully in ie7 but not in ff3. Please tell how to solve this in FF.

[jQuery] Re: window.close() in jQuery

2008-11-11 Thread namrata vagyani
Give me the general way. I am opening a popup using window.open(). But while closing window in popup window.close() not working properly in IE mozilla. So is their any jQuery solution for this. On Tue, Nov 11, 2008 at 4:28 PM, Liam Potter [EMAIL PROTECTED]wrote: depends how the pop up was

[jQuery] Re: How to do anything after animate finished

2008-11-11 Thread Alexandre Plennevaux
activate the button in a callback function after the animate var isClickable = true; right.click(function() { if(ul.css('left') != (maxMove * -1) + 'px' isClickable) { isClickable = false;

[jQuery] [validate] Password validation works in FF3 but not in IE6

2008-11-11 Thread dk
Thanks for a great validation plugin! Writing my first custom validation: script $(document).ready(function(){ jQuery.validator.addMethod(adminPwd, function(value, element) { return this.optional(element) || /^(?=.*\d)(?=.*[a-z])(?

[jQuery] Re: Custom sorter/parser for tablesorter

2008-11-11 Thread MorningZ
Here's an example if my question above is answered by yes, that's correct http://paste.pocoo.org/show/90863/ Remove the console.log if you aren't using FireFox and Firebug (which you should be as a JavaScript developer!) On Nov 11, 8:33 am, MorningZ [EMAIL PROTECTED] wrote: Yuck, why patch

[jQuery] Jquery in Drupal

2008-11-11 Thread bharani kumar
Hi Any one please tell me, how to use the jquery in Drupal, -- உங்கள் நண்பன் பரணி குமார் Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyer.hyperphp.com/

[jQuery] Re: Password validation works in FF3 but not in IE6

2008-11-11 Thread dk
Turns out that the positive look ahead syntax (?=.*\d) is buggy in IE6. I have a workaround which is good enough: chaining together simpler regular expressions: return this.optional(element) || ( (/^[^\W]*$/.test(value)) (/^. {8,255}$/.test(value)) (/[a-z]+/.test(value)) (/[A-Z]

[jQuery] Jquery Xml and XPath

2008-11-11 Thread BogN
I am trying to load an xml , and then to query the xml through xpath. I am trying to load an xml, and then to query it using xpath. i've tried this: $.ajax({ type: GET, url: Menu.xml, dataType: xml, success: function(xml) { $(xml,'/Root/Item').each(...); } } Root Item ID=1/Item

[jQuery] Re: How to load only one image at a time using JQuery Cycle Plugin?

2008-11-11 Thread OutOfTouch
On Nov 11, 9:35 am, Mike Alsup [EMAIL PROTECTED] wrote: For some reason  var index = $ (this).parent().children().index(this); returns -1  and it appears to be stuck in the onAfter method. Hmm.  Try this instead: function onAfter(curr, next, opts) {     var index = opts.currSlide;  

[jQuery] Re: How to load only one image at a time using JQuery Cycle Plugin?

2008-11-11 Thread Mike Alsup
For some reason  var index = $ (this).parent().children().index(this); returns -1  and it appears to be stuck in the onAfter method. Hmm. Try this instead: function onAfter(curr, next, opts) { var index = opts.currSlide; };

[jQuery] Re: Jquery in Drupal

2008-11-11 Thread Eric Martin
Can you provide more information? - What version of Drupal are you using? - What are you trying to do? - What have you tried so far? On Nov 11, 6:38 am, bharani kumar [EMAIL PROTECTED] wrote: Hi Any one please tell me, how to use the jquery in Drupal, -- உங்கள் நண்பன் பரணி  குமார்

[jQuery] Re: Jquery in Drupal

2008-11-11 Thread bharani kumar
Thanks for reply, I want to integrate the Jquery in drupal Am using the drupal 5, Can u send any sample module , that sample module must contain the JQuery functionality , On Tue, Nov 11, 2008 at 9:22 PM, Eric Martin [EMAIL PROTECTED] wrote: Can you provide more information? - What

[jQuery] Re: [ANNOUNCEMENT] jquery.timepickr.js: first official release

2008-11-11 Thread Andy Matthews
I think it looks great. Only suggestion I have is to get the selection portion of the plugin hidden until needed. Say, slide it down when the time field is hovered over? It just takes up too much room right now. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: [ANNOUNCEMENT] jquery.timepickr.js: first official release

2008-11-11 Thread MichaL Sanger
Great plugin, but I think that value in input should be changed only when I click on some hour or minute cell. Or it's maybe OK to have something like preview in the input, but it's not OK when I move mouse over some cells, leave without click and the previous value is lost. MichaL On Tue, Nov

[jQuery] Re: Jquery in Drupal

2008-11-11 Thread Eric Martin
http://www.google.com/search?q=drupal+5+jquery In regards to jQuery, I believe a lot has change since version 5. I'm pretty sure that version 6 automatically loads jQuery - is it possible for you to use a newer version. You'll have to do some research... On Nov 11, 7:56 am, bharani kumar [EMAIL

[jQuery] Re: next() and prev()

2008-11-11 Thread ricardobeat
Take a look at Ariel Flesler's scrollTo plug-in: http://flesler.blogspot.com/2008/09/jqueryscrollto-14-released.html On Nov 11, 12:20 pm, PaulC [EMAIL PROTECTED] wrote: I'm stuck using next() and prev() The menu on right hand side of this site:http://sugarsnap.previewurl.net needs to scroll

[jQuery] Re: Trouble with this

2008-11-11 Thread ricardobeat
On Nov 11, 10:54 am, RobG [EMAIL PROTECTED] wrote: No, it's not.  What object is the following functions called as methods of: (function(){})(); window? (function(){ alert(this) })(); creating a block scope doesn't make the function float in limbo! function foo() {}; foo.call({}); In

[jQuery] Re: [ showcase ] lisapram.com - interactive barcode

2008-11-11 Thread Rick Faircloth
Very nice, Lisa... Cutting edge, but still navigable and understandable with the addition of the small rectangles underneath slides. Good work. Good photography, too! Rick Alexandre Plennevaux wrote: Friends, That's it, i digested your comments, and now the website is launched. Thank

[jQuery] Re: would compressing merging multiple jquery plugin's violate any license?

2008-11-11 Thread Balazs Endresz
Not really -- this goes for the MIT license: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. At least, I think, you have to include the name of the license and the copyright owner too. On Nov 11, 4:19 am, Daniel

[jQuery] Re: Trouble with posting results of jquery autocomplete

2008-11-11 Thread Simbarashe
I found the answer to my own problem. I had set the id on the input tag, but had not specified the field name. The form does post, but without a name specified, the field is not included in the form values passed to the server.

[jQuery] Re: jqModal

2008-11-11 Thread MorningZ
$('#ex3b').jqmShow({ ajax: 'examples/3b.html', target: 'div.jqmAlertContent', overlay: 70, autofire: true }); You may also give this a shot: $('#ex3b').jqm().jqmShow({ ajax: 'examples/3b.html', target: 'div.jqmAlertContent',

[jQuery] Re: Trouble with this

2008-11-11 Thread Michael Geary
Hi Rob, thanks for the comments. Aren't we saying the same thing, though? From: Michael Geary To elaborate a bit, this is special, but it's not magic. Whenever you call a function in JavaScript, it's always called as a method of some object, From: RobG No, it's not. What object

[jQuery] Re: Serious help needed thanks

2008-11-11 Thread Takaya213
The next and previous buttons don't scroll the tab content but the content of that specific tab. Each tab has its own content. This is the content that has the next and previous scroll applied to it. ricardobeat wrote: http://www.ndoherty.com/demos/coda-slider/1.1.1/ On Nov 6, 6:19 am,

[jQuery] Re: Permission denied to get property XULElement.accessibleType

2008-11-11 Thread livefree75
I get the same error - haven't tracked it down yet. It doesn't show up in IE - only FF.

[jQuery] link fade in / out

2008-11-11 Thread Althalos
Hi. I have a menu consisting of some simple text links. They start with an opacity of 0.33 then when I move my mouse over them they lit up. They worked well, however the effects wanted to stack up in a queue so that when I had swept my mouse over the links a couple of times fast they would keep

[jQuery] Re: [ANNOUNCEMENT] jquery.timepickr.js: first official release

2008-11-11 Thread MorningZ
This even got blogged about on John Resig's blog http://ejohn.org/blog/picking-time/ While i agree that it is a nice plugin, the lack of, and seemingly tough luck attitude given by the plugin's main page, it working in IE6 (or 7 as mentioned above) and WebKit for iPhone is a huge strike

[jQuery] Re: JSLitmus invaluable tool

2008-11-11 Thread Michael Geary
JSLitmus isn't testing what it appears to be testing. In the 'use instance var' case, take a look at what this is inside the test function. I'll bet it's the window object. That is the reason it's so much slower in Firefox. I didn't try it in IE, but the difference is probably even more dramatic

[jQuery] Re: [autocomplete] - IE 6 and IE 7 Scroll bar problem.

2008-11-11 Thread Akio
Jorn, Thank you for showing interest in my problem. It shows the problem on all inputs with a scroll bar. You can try it on Single City (local) or Single Bird (Remote) on http://jquery.bassistance.de/autocomplete/demo/ . And the problem is exhibited on IE 7 as well. Here are the steps once

[jQuery] Re: My menu divs get behind content when shown on IE

2008-11-11 Thread Althalos
No IE is the culprit. It won't accept certain z-values and it's a mess to work with, thus. Google to find some of the specifics for IE 6 and z-index and see if any of them applies. For example I know that IE won't accept negative z-values while the other browsers at least won't act weird because

[jQuery] Re: document Ready function in the Ajax Response

2008-11-11 Thread Alexandre Plennevaux
instead of loading script, use the livequery plugin: http://brandonaaron.net/docs/livequery/ On Tue, Nov 11, 2008 at 12:54 PM, David Wu [EMAIL PROTECTED] wrote: could you pose some of your code? On Tue, Nov 11, 2008 at 6:30 PM, ravithokala [EMAIL PROTECTED] wrote: Hi, I have an

[jQuery] image coordinates

2008-11-11 Thread Alfredo Alessandrini
Hi, I need to write a function for return a value when I click an image. I've write this: jQuery(document).ready(function(){ $(#board).click(function(e){ var x = e.pageX - this.offsetLeft; var y = e.pageY - this.offsetTop; if (x 88 y 347){ alert(a1); }

[jQuery] Re: how to use another javascript funtion (and outside variables) inside jquery model

2008-11-11 Thread Michael Geary
Could we back up a bit and have you describe very simply how you want this page to work? Leave out all of the implementation details like the IDs and the JavaScript code. Simple HTML is OK if that helps describe what you want. It looks like you're pretty far off track on the implementation (no

[jQuery] Re: jquery.timepickr.js: first official release

2008-11-11 Thread [EMAIL PROTECTED]
Still torn. I'd like to see a version that is click-based. On Nov 11, 10:20 am, MorningZ [EMAIL PROTECTED] wrote: This even got blogged about on John Resig's blog http://ejohn.org/blog/picking-time/ While i agree that it is a nice plugin, the lack of, and seemingly tough luck attitude

[jQuery] Re: jqModal

2008-11-11 Thread Rule13
This did the trick... or at least it fires off the modal they way I want... but the file (examples/3b.html) no longer loads. Any ideas on this? Thanks for your help. MorningZ wrote: $('#ex3b').jqmShow({ ajax: 'examples/3b.html', target: 'div.jqmAlertContent',

[jQuery] Ajax load callback not firing

2008-11-11 Thread Andy
Hey everyone- I'm trying to get the load function to work properly and I've been using this page as a reference: http://docs.jquery.com/Ajax/load#urldatacallback As far as I can tell, the URL I want it to hit is getting hit, but the callback function never fires. Any ideas? head

[jQuery] Re: how to use another javascript funtion (and outside variables) inside jquery model

2008-11-11 Thread Oli
Thanks Mike for your reply. Okay, I have implemented this in a static mode: http://www.uniquebrand.co.uk/education/index.php Under Online resources if you click on these two links How to write an Abstract How to Write a Good Essay You will see the effect that I am trying to achieve. It does

[jQuery] Re: jqModal

2008-11-11 Thread Rule13
Hi Liam... I tried this approach but am still getting the message (h has no properties) and the modal is not loading. Stringing jqm().jqmShow is loading the modal correctly, but now the external file (examples/3b.html) no longer loads. Any ideas? Thanks for your help. Liam Potter wrote:

[jQuery] Re: jquery.timepickr.js: first official release

2008-11-11 Thread MorningZ
I'd like to see a version that is click-based. better yet, an option to make it hover or click based On Nov 11, 1:36 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Still torn.  I'd like to see a version that is click-based. On Nov 11, 10:20 am, MorningZ [EMAIL PROTECTED] wrote: This

[jQuery] Re: [ANNOUNCEMENT] jquery.timepickr.js: first official release

2008-11-11 Thread Jeffrey Kretz
I think it’s a great idea --it's a zillion times friendlier than an alert validator in ensuring properly formatted data. JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Liam Potter Sent: Tuesday, November 11, 2008 7:16 AM To:

[jQuery] Re: Ajax load callback not firing

2008-11-11 Thread Andy
Well I figured it out looking at a previous' user's sample: http://groups.google.com/group/jquery-en/browse_thread/thread/15b15c9c42d11366/bd4011452664bf62?lnk=gstq=load+callback+not+firing#bd4011452664bf62 Basically, instead of using the .load() function, I'm using the $.get() function.

[jQuery] Re: jQuery + HTML namespaces

2008-11-11 Thread ken
Thanks for the input guys. On Thu, Nov 6, 2008 at 5:47 PM, Karl Rudd [EMAIL PROTECTED] wrote: jQuery doesn't place play well with XML or namespaces, especially in IE but that's mostly because of IE's ... quirks. Technically HTML doesn't have namespaces, which probably explains why they sort

[jQuery] Jörn's autocomplete - advanced filtering an d matching

2008-11-11 Thread Simbarashe
I have been experimenting with the autocomplete, and so far am impressed with the performance. There is one thing, however, that I would like to do that I cannot figure out myself. My list items are supplied by a sql script that finds entries using both freetext and like matching. This means

[jQuery] Re: How to load only one image at a time using JQuery Cycle Plugin?

2008-11-11 Thread OutOfTouch
Hi Mike, After several tests for some reason FF doesn't like the onAfter and stops working for me after changing values in the select list and getting new image data. For some reason var index = $ (this).parent().children().index(this); returns -1 and it appears to be stuck in the onAfter

[jQuery] document Ready function in the Ajax Response

2008-11-11 Thread ravithokala
Hi, I have an issue with document.ready. I have a page which will make an ajax call. The response on the ajax call contains script which contains document.ready. The content in document.ready is getting executed successfully in ie7 but not in ff3. Please tell how to solve this in FF.

[jQuery] Re: Tab divs disappear

2008-11-11 Thread aaron
$(function() { $('#tabs_container ul').tabs( {fx: { opacity: 'toggle' } }).tabs('rotate', 5000); }); On Nov 7, 4:20 pm, Klaus Hartl [EMAIL PROTECTED] wrote: On 7 Nov., 21:43, subnet_rx [EMAIL PROTECTED] wrote: I'm using jQuery UI tabs and I'm rotating them

[jQuery] $.post with an array of variables

2008-11-11 Thread tukutela
Hi all, I have an array of variables that is built from the following: data['freshbox'] = encodeURIComponent(freshBoxType); data['numitems'] = encodeURIComponent(items.length); data['customerid'] = customerid; for (var i=0;iitems.length;i++) { data['item['+i+'][addonid]'] =

[jQuery] jScrollPane snapping when link is clicked

2008-11-11 Thread X10D3
I have a list of links in my pane. When I click a link it snaps to the top of the pane and I have to click it again. Is there anyway I can fix this to where I can click the link and it doesn't snap to the top?

[jQuery] jQuery and DWR - How to handle the callback

2008-11-11 Thread drooze
Hey all, Most plugins, ie grids etc, can load themselves using a URL parameter. How can I use DWR with these plug-ins since it hides the process of getting the JSON for you. For instance I would like to load a grid using the JSON returned from a call to a method via DWR. Is there a standard

[jQuery] Re: jqModal

2008-11-11 Thread Liam Potter
change $().ready(function() { to $(document).ready(function() { Rule13 wrote: I'm trying to trigger the following modal after the page loads. I've tried 'autofire:true' and jqmShow() to no avail. I am receiving an error message that 'h' has no properties. I'm obviously doing something

[jQuery] Re: onmouseclick get class

2008-11-11 Thread Liam Potter
First your html is wrong, you ca't self close a div tag. it should be div id=chess-board div class=chess-board div id=chess-board_piece_1 class=r style=r/div div id=chess-board_piece_2 class=n style=n/div div id=chess-board_piece_3 class=b style=b/div /div /div and the

[jQuery] Re: scrolling menu items...

2008-11-11 Thread Pixelstuff
Have you give the cycle plugin a look? http://malsup.com/jquery/cycle/ I know they have an example for scrolling single items back and forth, but I'm not sure how that would work with a portion of many like you have. http://malsup.com/jquery/cycle/scrollhv.html On Nov 10, 2:24 pm, PaulC

[jQuery] Announcement: Sorted Column Highlighting Widget For TableSorter.js Plugin

2008-11-11 Thread Bill
Good Afternoon, I wanted to let everyone know that I have created a widget for the tablesorter.js plugin that highlights the sorted column or columns. Please take a look at my post on it and let me know what could be improved here or in the post comments as I am still pretty new to jQuery and

[jQuery] How to parse XMLHttpRequest.responseText from $.ajax(complete: function())

2008-11-11 Thread John Ruffin
I've tried to make this as simple as possible. I can't figure out how to parse the value of an element in xhr.responseText... I have a function like this (works fine): $('#foo\\:raq').click(function(){ $.ajax( { url : 'ii.faces' ,

[jQuery] Re: Custom sorter/parser for tablesorter

2008-11-11 Thread MorningZ
Yuck, why patch the js file when a custom parser could just be built? before that can happen though, something needs to be made more clear in the examples above, you pretty much are just ignoring letters for sorting purposes? On Nov 11, 2:51 am, Rodent of Unusual Size [EMAIL PROTECTED]

[jQuery] Re: How to parse XMLHttpRequest.responseText from $.ajax(complete: function())

2008-11-11 Thread John Ruffin
Pinging. Requesting some light on how to pull an element/value from $.ajax( complete : callback() ). What do I need to do to parse the xhr.responseText in callback ? Thanks! On Nov 11, 11:15 am, John Ruffin [EMAIL PROTECTED] wrote: I've tried to make this as simple as possible.  I can't

[jQuery] Re: Serious help needed thanks

2008-11-11 Thread ricardobeat
http://www.ndoherty.com/demos/coda-slider/1.1.1/ On Nov 6, 6:19 am, Takaya213 [EMAIL PROTECTED] wrote: Hi I have a div, which has tabs that changes the divs in the area below it, show/hide effect. Now inside the div that is changed by the tabs it needs to scroll the content of that specific

[jQuery] Re: Who knows how to use jQuery in Dreamweaver CS4?

2008-11-11 Thread Brad
http://dreamweaverforum.info/dreamweaver-application-development/117531-cs4-jquery-support.html On Nov 9, 1:49 pm, Shawphy [EMAIL PROTECTED] wrote: Thx~ But it is said that dwcs4support jQuery directly  without extension On Nov 10, 2:17 am, Brad [EMAIL PROTECTED] wrote: This might be

[jQuery] ClueTip iframe issue

2008-11-11 Thread Rmesser
I have a website with navigation containing cluetip which functions properly, until I hit a page with an iframe. The title area of clueTip goes transparent, Title is displayed and Close link displayed over drop shadow. Both FF and IE.

[jQuery] Re: how to use another javascript funtion (and outside variables) inside jquery model

2008-11-11 Thread ricardobeat
The most clear way is to assign a single click handler: HTML: div class=contents div id=abstractBla bla bla bla /div div id=somethingelseBla bla bla bla /div /div ul class=links lia href=#abstractHow to write an Abstract/a/li lia href=#somethingelseHow to write something

[jQuery] Re: How to parse XMLHttpRequest.responseText from $.ajax(complete: function())

2008-11-11 Thread Mike Alsup
Requesting some light on how to pull an element/value from $.ajax( complete : callback() ).  What do I need to do to parse the xhr.responseText in callback ? What does the response text look like? Is it just a string? Is it JSON? Is it XML?

[jQuery] Re: How to parse XMLHttpRequest.responseText from $.ajax(complete: function())

2008-11-11 Thread John Ruffin
Here is what the response looks like: form id=iiForm name=iiForm method=post action=/dev/ii.faces enctype=application/x-www-form-urlencoded input id=iiForm:iiDude name=iiForm:iiDude type=text value=Show Me The Money / Here I want to get the value of iiForm:iiDude. On Nov 11, 2:18 pm, Mike

[jQuery] Re: Trouble with this

2008-11-11 Thread RobG
On Nov 11, 5:13 pm, Michael Geary [EMAIL PROTECTED] wrote: To elaborate a bit, this is special, but it's not magic. Whenever you call a function in JavaScript, it's always called as a method of some object, No, it's not. What object is the following functions called as methods of:

[jQuery] links going to top of page

2008-11-11 Thread rpetras
Hi all, New to JQuery ajax, so this is probably a rookie mistake, but I can't seem to find what I'm doing wrong. I have a page separated into a left (selection) and right (display) region using css. I have the links on the left pointing to a div on the right. Simple enough. However, when

[jQuery] Re: How to parse XMLHttpRequest.responseText from $.ajax(complete: function())

2008-11-11 Thread John Ruffin
Here is the entire response if this helps: ?xml version=1.0 encoding=ISO-8859-1 ? !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/ DTD/xhtml1-transitional.dtd html xmlns=http://www.w3.org/1999/ xhtmlheadmeta content=text/html; charset=ISO-8859-1 http-

[jQuery] validate

2008-11-11 Thread jalanbyers
Hi, I am using the amazing validator plugin by Mr. Zaefferer.. I'm unable to find any documentation on using multiple fields within a single validation rule (e.g. adding a single validation to 3 social security number fields rather than validating each field separately and using a single

[jQuery] JSLitmus invaluable tool

2008-11-11 Thread howardk
I still feel fairly new to jQuery and javascript -- after almost a year! -- and have been experimenting with several different coding styles for plug-ins. Lately I've been curious about the difference in performance between using local variables vs. instance variables for storing state. JSLitmus,

[jQuery] jQuery.getScript and Browser Cache

2008-11-11 Thread Panman
Are browsers able to cache calls from jQuery.getScript (http:// docs.jquery.com/Ajax/jQuery.getScript)? I'm just trying to determine either to use that or just use HTML script tags to get jQuery plugin files and such. Would like the most officiant option. The reason being, I'd like to break out

[jQuery] Re: validate

2008-11-11 Thread christine . panus
That would be the groups option, I'm still trying to make it work, but here's the documentation I've found:http://docs.jquery.com/Plugins/Validation/Reference#Validating_multiple_fields_with_one_method I've got my rules and my groups option both in the validate _javascript_ call.  If you figure

[jQuery] jqModal

2008-11-11 Thread Rule13
I'm trying to trigger the following modal after the page loads. I've tried 'autofire:true' and jqmShow() to no avail. I am receiving an error message that 'h' has no properties. I'm obviously doing something wrong. Can someone help point me in the right direction? Here's the code: !DOCTYPE

[jQuery] Re: [ANNOUNCEMENT] jquery.timepickr.js: first official release

2008-11-11 Thread Alexandre Plennevaux
impressive, congratz ! On Tue, Nov 11, 2008 at 3:34 PM, h3 [EMAIL PROTECTED] wrote: Hi everyone, Yesterday I released the first public release of my jquery.timepickr plugin. I've posted it on the jQuery plugin page: http://plugins.jquery.com/project/jquery-timepickr Home page:

[jQuery] Re: [ANNOUNCEMENT] jquery.timepickr.js: first official release

2008-11-11 Thread Jeffrey Kretz
Look terrific in FF, but it's seriously broken in IE7. I get a script error on line 8007 whenever I click on the page, which seems to prevent anything from working. // hide all levels hide: function() { self = this; Right here. setTimeout(function() {

[jQuery] Re: Remove CSS setting (not class)?

2008-11-11 Thread MorningZ
try $(#myElement).css(height, null); On Nov 11, 7:52 am, Shawn Grover [EMAIL PROTECTED] wrote: I have an odd situation where a DIV can be displayed in one of 3 states: - normal (X x Y pixels in dimension), - minimized (hidden) - maximized - the height value removed so that the div

[jQuery] Call Thickbox ImageGroup from flash

2008-11-11 Thread subco
Hi all, I have a little problem with calling a thickbox imageGroup from flash. Opening one single image is no problem (http:// www.prioninteractive.com/article/call-thickbox-from-within-flash/). But I don't know how to open a gallery/imageGroup from flash. Has anyone an idea?

[jQuery] Re: document Ready function in the Ajax Response

2008-11-11 Thread David Wu
could you pose some of your code? On Tue, Nov 11, 2008 at 6:30 PM, ravithokala [EMAIL PROTECTED] wrote: Hi, I have an issue with document.ready. I have a page which will make an ajax call. The response on the ajax call contains script which contains document.ready. The content in

[jQuery] Re: How to parse XMLHttpRequest.responseText from $.ajax(complete: function())

2008-11-11 Thread Mike Alsup
form id=iiForm name=iiForm method=post action=/dev/ii.faces enctype=application/x-www-form-urlencoded input id=iiForm:iiDude name=iiForm:iiDude type=text value=Show Me The Money / Here I want to get the value of iiForm:iiDude. Why not use responseXML since you're returning an XML doc?

[jQuery] Re: how to use another javascript funtion (and outside variables) inside jquery model

2008-11-11 Thread Michael Geary
That looks like just what Oli needs - thanks, Ricardo. The selector is not quite right in the click handler. Don't strip off the leading '#' character, because you would just have to add it back in to make a jQuery selector. Also, for efficiency, I would suggest using IDs instead of classnames

[jQuery] Re: [autocomplete] - IE 6 and IE 7 Scroll bar problem.

2008-11-11 Thread Akio
Just editing the subject so it shows [autocomplete] On Nov 11, 11:26 pm, Akio [EMAIL PROTECTED] wrote: Jorn, Thank you for showing interest in my problem. It shows the problem on all inputs with a scroll bar. You can try it on Single City (local) or Single Bird (Remote)

[jQuery] Re: jQuery.getScript and Browser Cache

2008-11-11 Thread Michael Geary
Are you going to always be loading these .js files into your page? If so, the most efficient option by far is to concatenate all of them into a single .js file that you load with a single script tag. Maybe explain more about why you want a bootstrap file, and what exactly you want it to do?

[jQuery] Remove CSS setting (not class)?

2008-11-11 Thread Shawn Grover
I have an odd situation where a DIV can be displayed in one of 3 states: - normal (X x Y pixels in dimension), - minimized (hidden) - maximized - the height value removed so that the div grows/shrinks to show the contents of the div. The first two are done, but I'm hitting a wall on the

[jQuery] Re: [autocomplete] - IE 6 Scroll bar problem.

2008-11-11 Thread Jörn Zaefferer
I can't reproduce that. Which actual example (which input) did you test with? Jörn On Tue, Nov 11, 2008 at 3:31 PM, Akio [EMAIL PROTECTED] wrote: I have been looking at JQuery autocomplete and just when I thought it would meet my needs, I found a bug on IE 6. This is the problem. 1. Enter

[jQuery] window.close() in jQuery

2008-11-11 Thread Debby
Hello, can anyone explain how to close popup window programmatically in jQuery? Thanks in advance.

[jQuery] Re: How to parse XMLHttpRequest.responseText from $.ajax(complete: function())

2008-11-11 Thread John Ruffin
In Firebug, xhr.responseXML is null. Is there something explicitly I need to do in order to populate it? On Nov 11, 3:09 pm, Mike Alsup [EMAIL PROTECTED] wrote: form id=iiForm name=iiForm method=post action=/dev/ii.faces enctype=application/x-www-form-urlencoded input id=iiForm:iiDude

[jQuery] Re: jQuery timing out on page load

2008-11-11 Thread Dodi Rahmaninoff
Is the web is in php? if it is, why don't you try not to load the jquery file when the file is not needed, by addding the condition before the script tag, hope it can solve your problem harryhobbes wrote: Hi, I've got jQuery loading by default on my site. The library is only used on some

[jQuery] Re: How to do anything after animate finished

2008-11-11 Thread David Wu
ooops, I got another problem, in FF3, CSS property white-space will make image have 3px padding, but in IE, it's not, any good suggestion? On Tue, Nov 11, 2008 at 7:54 PM, Alexandre Plennevaux [EMAIL PROTECTED]wrote: my pleasure :) On Tue, Nov 11, 2008 at 12:53 PM, David Wu [EMAIL PROTECTED]

[jQuery] Re: [validate] Password validation works in FF3 but not in IE6

2008-11-11 Thread Jörn Zaefferer
There is a (experimental) subproject for password validation, including a strength meter: http://jqueryjs.googlecode.com/svn/trunk/plugins/validate.password/ The actual code is in http://jqueryjs.googlecode.com/svn/trunk/plugins/validate.password/jquery.validate.password.js Jörn On Tue, Nov 11,

[jQuery] Re: onmouseclick get class

2008-11-11 Thread Alfredo Alessandrini
jQuery(document).ready(function(){ $(.chess-board div).click(function() { test = $(this).attr(class); alert(test); }); }); Now it's work... Thanks. Alfredo

[jQuery] Re: window.close() in jQuery

2008-11-11 Thread Klaus Hartl
On 11 Nov., 12:04, namrata vagyani [EMAIL PROTECTED] wrote: Give me the general way. I am opening a popup using window.open(). But while closing window in popup window.close() not working properly in IE mozilla. So is their any jQuery solution for this. The jQuery solution is:

[jQuery] Re: How to parse XMLHttpRequest.responseText from $.ajax(complete: function())

2008-11-11 Thread Mike Alsup
In Firebug, xhr.responseXML is null.  Is there something explicitly I need to do in order to populate it? Your server needs to set the correct mime-type.

[jQuery] [autocomplete] - IE 6 Scroll bar problem.

2008-11-11 Thread Akio
I have been looking at JQuery autocomplete and just when I thought it would meet my needs, I found a bug on IE 6. This is the problem. 1. Enter something in the text box that provides suggestions 2. Let the suggestion list appear with scroll bars. 3. Use the scroll bar to scroll down or up

  1   2   >