[jQuery] Re: A Tree which can be filtered or searched....

2009-04-01 Thread Tin
Ravish, Take a look at SlickGrid at http://slickgrid.googlecode.com (example 4). While it is an editable grid and not a tree, the tree-like expand/ collapse functionality is easily implemented and the DataView allows expanding/collapsing/searching/sorting/etc with 100'000 items with ease even on

[jQuery] .each()

2009-04-01 Thread iceangel89
i used .each to select all elements with id that starts with laLab $(*[id^=laLab]).each(function (i, obj) { alert(obj.attr(value)); }); but i cant do obj.attr(value) nor obj.val(). why is this so? when i alert(obj) its said i got HTML Input Element which is right

[jQuery] Re: $(document).ready and Firefox 3

2009-04-01 Thread chrsan
Unfortunately not since I'm working for a client and to make the whole thing work one must have the Nexus Personal Security Software installed. Maybe it's possible to simulate it by loading some other kind of plugin. I would be happy to send the JavaScript and HTML though. /Christer On 31 Mar,

[jQuery] Re: .each()

2009-04-01 Thread iceangel89
oh i fixed it. its because i called that after getJSON and getJSON has not set the values yet. :) On Apr 1, 2:46 pm, iceangel89 iceange...@gmail.com wrote: i used .each to select all elements with id that starts with laLab $(*[id^=laLab]).each(function (i, obj) {    alert(obj.attr(value));

[jQuery] Changing Method Values on the Fly

2009-04-01 Thread Code Daemon
I want to dynamically change the function value of the submitHandler: method. How can I do this? Here is some sample code: $('#update_inventory').validate({ submitHandler: function(form) {

[jQuery] Re: [validate] Validating a date

2009-04-01 Thread Jörn Zaefferer
It just validates the date format, and doesn't do any sanity checks. If you need that, you could implement a custom method (http://docs.jquery.com/Plugins/Validation/Validator/addMethod), maybe using a date library like datejs.com. Jörn On Tue, Mar 31, 2009 at 10:51 PM, Erich93063

[jQuery] Re: Wrap all center tags

2009-04-01 Thread tij_dev
Sorry for the confusion, actually my content is html, but I'm working on a specific node (with its descendants) On 31 mar, 22:14, Ricardo ricardob...@gmail.com wrote: You can't treat XML as HTML, and jQuery's methods are meant for HTML only. I think you'll have to create your own wrapping

[jQuery] Re: [validate] How can I force element validation if the value is unchanged?

2009-04-01 Thread Jörn Zaefferer
You could remove the cached value from the element data. Then call valid() on that element to run the validation again. Jörn On Wed, Apr 1, 2009 at 3:21 AM, pbarnes pmbar...@gmail.com wrote: I need to use an ASMX service to validate a phone number. The Web method requires the phone number

[jQuery] Form Plugin: how to retrieve the ajax form instance in success callback?

2009-04-01 Thread goodwill
As title, I have a setup of forms binded to ajaxForm using livequery, so I need to determine which form is submitting data to update the corresponding element, any suggestion?

[jQuery] Hi !

2009-04-01 Thread Ken
Có một người bạn của bạn đã giới thiệu email của bạn và muốn bạn cùng tham gia với người ấy tại http://enghe.info với thông điệp như sau: Hôm qua tớ có ghé thăm website này ... nó thật tuyệt ... cậu có thể ghé thăm để tìm hiễu về nó http://enghe.info; http://enghe.info Tại sao bạn ko nghe

[jQuery] jquery validate plugin. remote problem

2009-04-01 Thread david.0pl...@gmail.com
Hi, I'm sorry to bother, but I can't find enough documentation on this plugin I have this cose: $(document).ready(function(){ $(#form_reg).validate({ rules: { username: {required:true, minlenght:5, remote:check_user.php}, password:

[jQuery] Valore della proprietà non valido. jquery. js, Riga 12 Carattere 12721

2009-04-01 Thread Lwangaman
Can anyone help in deciphering this error message? I only get it in Internet Explorer, it doesn't show up either in Firefox or in Chrome. Here is the page that it occurs on: http://johnrdorazio.altervista.org/SitoFlatnukePersonale/?lang=enmod= The block that uses jquery and that is provoking

[jQuery] Value of the property not valid. jquery.js, Line 12 Character 12721

2009-04-01 Thread Lwangaman
BTW the error message, translated into english is: Value of the property not valid. jquery.js, Line 12 Character 12721 The part of code that is put into evidence is some jquery function: if(L){J[G]=K}return J[G]},trim:function(E){return(E||).replace(/^\s+| \s+$/g,)},makeArray:function(G){var

[jQuery] what name have 2 dropdowns where the second content is depend from the first selection?

2009-04-01 Thread heohni
I am trying to find some example codes using mysql data, but can't find anything right now, for what should I search? Sorry for this really uncool question

[jQuery] Re: jQuery BlockUI Plugin v2, problems overriding default messages /getting them to show

2009-04-01 Thread javahollic
Hi Mike, Now using 2.14, everything works, thanks a lot! On Mar 31, 10:26 pm, Mike Alsup mal...@gmail.com wrote: I'm using BlockUI 1.33 and JQuery 1.2.3 That's the problem.  'message' is a 2.0+ option.   If you need to use the old version of blockUI, consult the old docs:

[jQuery] Re: jquery validate plugin. remote problem

2009-04-01 Thread Jörn Zaefferer
You've got a typo, minlenght, should be minlength. Details for the remote method are here: http://docs.jquery.com/Plugins/Validation/Methods/remote A demo, including PHP examples, here: http://jquery.bassistance.de/validate/demo/milk/ Jörn On Wed, Apr 1, 2009 at 11:22 AM,

[jQuery] Using the title attribute if images as captions

2009-04-01 Thread osu
Hi, I'm trying to use the title attribute of images to create a simple caption below the image. To do so, I've been trying to wrap the image (floated left or right) in a div and add a caption that's taken from the image attribute. So far, I have: Code: // Create caption from title attribute

[jQuery] remove all center tags hidden

2009-04-01 Thread tij_dev
Hello everybody, I'm trying to remove all the center tags which have a visibility hidden. I tried : $(cent...@style*=hidden],pDocument).remove(); (pDocument is the node I'm working on) but this doesn't work. Any idea? Thanks a lot :)

[jQuery] Re: jquery validate plugin. remote problem

2009-04-01 Thread david.0pl...@gmail.com
Wow, thank you.. I would've never found it, whenever I have a typo in the code i need to have someone look at it or else I'll never find it! Thank you again! On Apr 1, 1:24 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: You've got a typo, minlenght, should be minlength. Details for

[jQuery] context-based selection in internet explorer 7 doesn't work

2009-04-01 Thread netConnecting - Marvin Schröder
hello! i have a problem with the context-based selection of elements in a html-string in internet explorer 7. with the following code: var htmltmp = 'div style=width: 1100px;img src=test.gif width=300 id=testphoto //div'; alert($('#testphoto', htmltmp).attr('width')); the internet

[jQuery] Jquery simple problem

2009-04-01 Thread Nabeel Faruqui
Hi, This is my simple jquery code. I have included it in the head of html document. script type=text/javascript jQuery(function() { jQuery('#slickbox').hide('fast'); jQuery('#slick-toggle').click(function() { jQuery('#slickbox').toggle('blind',350);

[jQuery] take free surveys ge paid

2009-04-01 Thread broker1...@gmail.com
make up to $20 per day.Get paid immediately http://www.AWSurveys.com/HomeMain.cfm?RefID=kimosh

[jQuery] Re: New Plugin: jQuery Finder (Mac-style 'Treeview' with Columns)

2009-04-01 Thread Tor
Am wondering if it would be possible to store the expanded state with an anchor hash, to allow page reloads? -- -Tor

[jQuery] Problem with .click even fired as many times the page refreshes

2009-04-01 Thread Nabeel Faruqui
I have the followin code in my html script type=text/javascript jQuery(function() { jQuery('#slickbox').hide('fast'); jQuery('#slick-toggle').click(function() { jQuery('#slickbox').toggle('blind',350); return false; }); });

[jQuery] Re: jQuery.noConflict() and firefox 2: errors - is this a bug?

2009-04-01 Thread pyt
Hi, I have the same problem with FF2 on my eeePC (linux) The code is //--- script type='text/javascript' src='/js/prototype.js'/script script type='text/javascript' src='/js/scriptaculous.js? load=effects'/script script type=text/javascript src=/js/jquery-1.3.2.min.js/script script

[jQuery] [novice Q] click() only binds to first match

2009-04-01 Thread thalis
Hi all, I have 3 images. I want one of them to be displayed, and when user clicks either on span1/span or span2/span to swap the displayed image with the clicked one. Here is my (semi-functional) shot at it: $(document).ready( function() { $('#altImg').click( function(){

[jQuery] cluetip question mark loading data

2009-04-01 Thread likestheaction
I am able to see a clue tip pop up, but i can't get any data into it from another page. It just shows a question mark when i mouse over the link, the cluetip opens, and there is nothing in it. I am using jquery1.3.2, and the latest cluetip. In the document ready i have a this:

[jQuery] Fix for media plugin

2009-04-01 Thread lukejackson
I have come across a bug in the jQuery media plugin on line 391: if (key == 'codebase' window.location.protocol == 'https') This should be: if (key == 'codebase' window.location.protocol == 'https:') (note missing trailing colon) This correctly prevents the This

[jQuery] [autocomplete] Problem with focus after selection with autocomplete input box should be hided on blur

2009-04-01 Thread bhbane
Hi, I have created some widget to search the database for some entries. I used the autocomplete script to show the results. I wanted to hide the search box after a result is selected (the searchbox will be shown on a click of a button) Everything works fine exept in IE. Cause I hide my input

[jQuery] Re: .each()

2009-04-01 Thread lukejackson
.attr() and .val() are defined on the jQuery class, not the DOM element. Try $(obj).attr(value) or obj.value instead On Apr 1, 2:46 pm, iceangel89 iceange...@gmail.com wrote: i used .each to select all elements with id that starts with laLab $(*[id^=laLab]).each(function (i, obj) {    

[jQuery] Re: Using the title attribute if images as captions

2009-04-01 Thread osu
As a development on this thread, I've changed my code to the following based on someone else's comments, but I still can't get it to work (by the way, the $j is in there as part of a method to avoid conflict with Joomla's Mootools library - I'm building this site in Joomla). Any ideas of what

[jQuery] Re: Fix for media plugin

2009-04-01 Thread Mike Alsup
I have come across a bug in the jQuery media plugin on line 391:             if (key == 'codebase' window.location.protocol == 'https') This should be:             if (key == 'codebase' window.location.protocol == 'https:') (note missing trailing colon) Thanks for catching and

[jQuery] Re: Increase / Decrease Font Size

2009-04-01 Thread Leonardo K
Set and Get the fontSize from the body not the html. Ex: var currentSize = $(body).css(font-size); I change your code and works fine if you use the body instead of html to set and get the size: http://jsbin.com/iwage On Tue, Mar 31, 2009 at 10:20, Dan Vega danv...@gmail.com wrote: I am using

[jQuery] Re: cluetip question mark loading data

2009-04-01 Thread Karl Swedberg
Hi there, The problem is that you're using the splitTitle option, which is for loading text from the link's title attribute into the clueTip. Remove that option and it should work. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 31, 2009, at 11:31

[jQuery] Re: Validation Success Callback

2009-04-01 Thread MonkeyBall2010
The single quotes around the window.location worked like a charm... Thanks a lot for your help! On Mar 31, 7:32 pm, James james.gp@gmail.com wrote: Slight typo on the second option: setTimeOut(doSomething, 5000); function doSomething() {      window.location = 'http://www.google.com';

[jQuery] Re: Star rating plugin problems

2009-04-01 Thread Diego A.
Hi Sergey, I've just been to your site to take a look but it seems to be working fine now. Glad you worked it out. Cheers, Diego A. 2009/3/30 Sergey sergey.pante...@gmail.com Hello Diego, Have recently installed it on one my hobby site and I have a small problem on plugin and cant find

[jQuery] Re: using apple-style slider

2009-04-01 Thread Adam
Ive since sorted this one and thought I would post for the group. The search is dynamic and the # of elements (LIs) changes per inputs in other form elements on the page. So, the first step was to count the LIs in the UL, then multiply the result by the width of each element, and apply that value

[jQuery] Re: Dynamic Form - Best practice

2009-04-01 Thread Kreeves
I'd like to re-open this discussion as I've had some time to play around with it and attempted to expand. I'm essentially wanting the user to first be prompted with a drop down list of possible search criteria, where they then, for example, may select Location from the first list. Once they do

[jQuery] Re: cluetip question mark loading data

2009-04-01 Thread likestheaction
Yep, that worked. I thought showtitle would extract the title out of my webpage, so i misunderstood. I've tried a couple other tip plugins, and this one seems the most robust for custom content, so i'm glad to get it working! Thanks, -lta On Apr 1, 8:57 am, Karl Swedberg

[jQuery] Re: click() only binds to first match

2009-04-01 Thread MorningZ
Well, IDs are supposed to be *unique* on the page, which you do not have your selector would be better off like $(span.box).click() On Apr 1, 5:16 am, thalis tkalf...@gmail.com wrote: Hi all, I have 3 images. I want one of them to be displayed, and when user clicks either on  

[jQuery] tablesorter with .toggle sorts hidden row - any way to prevent this?

2009-04-01 Thread Colin.Houghton
Reposting since no response on original post. I have a table where every other row is collapsed (using .toggle). I want to sort on the visible rows, but the sort, of course, sorts the hidden rows as well...the result is that the hidden rows may not longer be associated with the same parent row.

[jQuery] Re: Value of the property not valid. jquery.js, Line 12 Character 12721

2009-04-01 Thread Lwangaman
Ok I reasoned out that the interpreter rendered the background color of the first cell and stopped there, so I went to see what the next css property was supposed to be and it was the border-color. All I did was capitalize lightblue to LightBlue and lo and behold, I now no longer get that error

[jQuery] Re: .each()

2009-04-01 Thread iceangel89
thanks On Apr 1, 6:00 pm, lukejackson lukejacks...@gmail.com wrote: .attr() and .val() are defined on the jQuery class, not the DOM element. Try $(obj).attr(value) or obj.value instead On Apr 1, 2:46 pm, iceangel89 iceange...@gmail.com wrote: i used .each to select all elements with id

[jQuery] [tooltip]

2009-04-01 Thread fredriley
I've a wee problem with Jörn's excellent Tooltip plugin, to do with image maps. This problem, I think (the example links now 404), was also reported by John on the Tooltip plugin page (http:// bassistance.de/jquery-plugins/jquery-plugin-tooltip/). Simply, with an image map the tooltips appear a

[jQuery] [tooltip] Tooltips out of position with imagemaps

2009-04-01 Thread fredriley
[Aargh! Sorry, I forgot to add a proper subject line to the message I've just posted, so it got tagged onto another thread. Here we area again, hopefully in a new thread.] I've a wee problem with Jörn's excellent Tooltip plugin, to do with image maps. This problem, I think (the example links now

[jQuery] Select images instead of text

2009-04-01 Thread Benoit Villière
Hello everyone, I've been desperately googling for a jQuery plugin that would make me able to display thumbnails that can be selectable, like does the html select tag (it will send photo information to a PHP script, so that I can delete the photos). That would provide a nice, visual selection of

[jQuery] Re: [tooltip]

2009-04-01 Thread fredriley
Sorry, please ignore this message, which I posted without a proper subject line hence it's appending to this thread. I've reposted it in a new thread with the subject [tooltip] Tooltips out of position with imagemaps. Cheers Fred

[jQuery] Re: Tooltips out of position with imagemaps

2009-04-01 Thread fredriley
DOUBLE AARRGGH!! Sorry, I just realised my simple, stupid mistake - I'd forgotten to link in the jquery.tooltip.css file in the HTML docs. Now I have done so, the tooltips work fine. D'OH!!! :(( So there's no problem at all. Thanks again to Jörn for this and other plugins, which are all the

[jQuery] Re: will two JQuery libs conflicts?

2009-04-01 Thread Xu
Thanks. Can you elaborate it? You seem to suggest if my web page includes their actual JQuery file, there will be for sure problems. Why is that? Thanks. On Mar 31, 7:10 pm, brian bally.z...@gmail.com wrote: If you're only including some functions from the other site, rather than the

[jQuery] can some body send me example of validation plug in with Ajax

2009-04-01 Thread Hellofrom
Hello every one i need your help to send me information (example) of how to use validation plug in with AJAX thanks

[jQuery] Re: Using the title attribute if images as captions

2009-04-01 Thread brian
In the first version, you're wrapping the img with a div, then trying to ad the caption to a child div of the img. There was also a typo (cright instead of cleft). In the 2nd version, you're trying to append the caption to *all* divs with classname captionwrap. Try this: $(function (){

[jQuery] Re: New Plugin: jQuery Finder (Mac-style 'Treeview' with Columns)

2009-04-01 Thread Nicolas R
Tor, To select an item when the finder is created you can use the public method $('some').finder('select', URLS_ARRAY or URL_STRING or DOM_ELEMENTS ). Call this method on the onInit callback. There is no function that returns some sort of path for the current page. I believe it would be easy to

[jQuery] BlockUI, after first ajaxSubmit() callback, an automated 'block' results in a blank line rather than visible div with msg

2009-04-01 Thread javahollic
following on from: http://www.malsup.com/jquery/block/#dialog I have a form, and ajaxSubmit is fine, I set a callback fn in its options, and receive callbacks. Testing for error conditions, I put a dialog block in that callback so a DIV pops up on every callback. The first submission/callback

[jQuery] Superfish sf-vertical

2009-04-01 Thread Perry
I've got a simple vertical Superfish menu (see example code below). The twist is that I would like the children of the *bottom* menu item to pop-out upwards. The reason for the twist is because users are complaining that they can't get to the children since they display off the bottom of the

[jQuery] Using JQuery effects in IE7??

2009-04-01 Thread for...@gmail.com
I've created my site and it looks great in Firefox.. however in IE7 it just wont work, i'm not bothered about getting it working in anything less than IE7 2 effects i am using are fadeOut and slideDown are there any fixes to get these working in IE

[jQuery] Re: will two JQuery libs conflicts?

2009-04-01 Thread brian
On Wed, Apr 1, 2009 at 11:01 AM, Xu bobxu1...@gmail.com wrote: Thanks. Can you elaborate it? You seem to suggest if my web page includes their actual JQuery file, there will be for sure problems.  Why is that? Thanks. Because you'll be redeclaring the methods. If you load a page like this,

[jQuery] Re: jQuery validation question: validating multiple email inputs

2009-04-01 Thread roryreiff
ml2009, I seem to have it working within the confines of validating multiple email addresses within the plugin's reg exp. I made the validation check run only if the email length is greater than one...this takes care of the case when a user has a comma after the last email address (i.e., this

[jQuery] Re: jQuery validation question: validating multiple email inputs

2009-04-01 Thread roryreiff
ml2009, I seem to have it working within the confines of validating multiple email addresses within the plugin's reg exp. I made the validation check run only if the email length is greater than one...this takes care of the case when a user has a comma after the last email address (i.e., this

[jQuery] Re: JQuery Cycle pluggin

2009-04-01 Thread Laegnur
Hi! Finally, I reject this effect. What I have done, is turn the Cycle in a non-flash intro for a client website. I leave here the code for it is useful to someone, or someone suggests some improvement. [code] ... script type=text/javascript src=js/jquery.js/script script type=text/javascript

[jQuery] Getting all children, not just immediate children??

2009-04-01 Thread sinkingfish
Hi I trying to write a script which allows for easily hiding and revealing content by just specifying the correct class names. The problem I'm having is that my current script will only toggle elements if the 'toggletarget' is a immediate sibling of the 'togglebutton'. My problem is that the

[jQuery] Re: Jquery - Weird Issue with Node cannot be inserted at the specified point...

2009-04-01 Thread Christopher Kurtis Koeber
Sure, this is part of a Drupal install. I will send the link in a moment. Thanks so much for looking into it. Regards, Christopher Koeber -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Michael Geary Sent: Tuesday, March 31, 2009 4:00

[jQuery] Re: Jquery - Weird Issue with Node cannot be inserted at the specified point...

2009-04-01 Thread Christopher Kurtis Koeber
Oh, OK. Well, to be precise the info is HTML (or XHTML). Regards, Christopher Koeber -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Ricardo Sent: Tuesday, March 31, 2009 11:45 AM To: jQuery (English) Subject: [jQuery] Re: Jquery -

[jQuery] Re: Getting all children, not just immediate children??

2009-04-01 Thread Hector Virgen
$(this).siblings() only returns the immediate descendents of 'this'. Try using $(this).find() instead. -Hector On Wed, Apr 1, 2009 at 9:28 AM, sinkingfish sinkingf...@gmail.com wrote: Hi I trying to write a script which allows for easily hiding and revealing content by just specifying the

[jQuery] Good Server-Side tabs to compliment jQuery tabs

2009-04-01 Thread expresso
Trying to find a decent solution to server-side tabs for when users have JavaScript turned off. I'll be using jQuery tabs but looking for a CSS tab solution (that allows images for the tabs also) that works cross browser. Anyone used any decent CSS scripts or have an example of actual tabs

[jQuery] Re: Jquery - Weird Issue with Node cannot be inserted at the specified point...

2009-04-01 Thread Christopher Kurtis Koeber
OK, I will try that and report back. Thank you so much for the help! Regards, Christopher Koeber -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Ricardo Sent: Tuesday, March 31, 2009 4:12 PM To: jQuery (English) Subject: [jQuery] Re:

[jQuery] Re: tablesorter with .toggle sorts hidden row - any way to prevent this?

2009-04-01 Thread MorningZ
Hmm, if it was me, and take this as only a suggestion, but one i know will work I'd put the description rows in the footer, and hide them, when you ask for more info, then either: 1) hide all other tbody rows than the one requested, and then show the respective description row 2) clone and

[jQuery] Managing scripts in AJAX applications

2009-04-01 Thread JMan
One thing I have been struggling with is AJAX applications is managing the js code that powers them. For example if you have a page that loads content from an AJAX call to the server and that content also has js code associated with it in order to function how do I manage that code? If I have 20

[jQuery] Re: tablesorter with .toggle sorts hidden row - any way to prevent this?

2009-04-01 Thread MorningZ
btw, one thing about tablesorter: it's very complicated code, and making hacks to it to support something like you ask for would be a pretty heavy duty task not that i am a super expert at it, but i've found that keeping rows that you don't want sorted out of the tbody is the best way to

[jQuery] Re: Firefox 3 (Win) bug in slide animation

2009-04-01 Thread Ty Wangsness
To see this bug in action, visit: http://www.keytosavannah.com click on one of the days in the events calendar (top of the left column on most any page). A div will use the slide animation to display on top of the calendar with that day's events. This works fine in IE6/7, Safari, Mac

[jQuery] Re: Using JQuery effects in IE7??

2009-04-01 Thread Jonathan
A bit more details would help plus a link to see it in action. Are you seeing errors or are the effects just not firing? On Apr 1, 8:10 am, for...@gmail.com for...@gmail.com wrote: I've created my site and it looks great in Firefox.. however in IE7 it just wont work, i'm not bothered about

[jQuery] Re: distinguishing between clicks on an outer container vs an inner link

2009-04-01 Thread Ricardo
I was adding something to your post - quoting your message and replying to the topic. This is a group conversation, not a personal e- mail so it's not hard to assume that you refers to the OP. I usually just hit the last Reply link, as my answer will probably be in context with what others have

[jQuery] How can I get this title to display?

2009-04-01 Thread Rick Faircloth
Hi, all. I'm running a query (rather a couple of queries via ColdFusion) and then returning the results via ajax for display on a page. I'm using this code to output the results with no problem: (shortened verson)

[jQuery] Re: How can I get this title to display?

2009-04-01 Thread Rick Faircloth
Nevermind.got it working. I remembered some coding from a previous app that I built that did the same thing. Thanks for anyone looking over that long email! Rick From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Rick Faircloth Sent: Wednesday,

[jQuery] JQuery/PHP debugging technique - any suggestions on how to do this?

2009-04-01 Thread LinkGuru
Hi, I am looking for some help debugging jQuery being used with PHP in the way described. I basically want a way of tracing where it gets to in the PHP because the usual methods of writing out statements to the page or embedding javascript alerts are not available to me in this scenario. I will

[jQuery] Re: JQuery/PHP debugging technique - any suggestions on how to do this?

2009-04-01 Thread Hector Virgen
You should try using Firebug. You can print directly to the Firebug console from within PHP, or you can just echo some message and look at the response tab of the firebug console. -Hector On Wed, Apr 1, 2009 at 11:56 AM, LinkGuru i...@legalanalytics.co.uk wrote: Hi, I am looking for some help

[jQuery] Re: jQuery.noConflict() and firefox 2: errors - is this a bug?

2009-04-01 Thread Eric Martin
Like it was mentioned above, the noConflict() call has to come right after loading jQuery and before loading the other libraries. -Eric On Mar 31, 11:54 pm, pyt paya...@gmail.com wrote: Hi, I have the same problem with FF2 on my eeePC (linux) The code is //--- script

[jQuery] Re: [validate] How can I force element validation if the value is unchanged?

2009-04-01 Thread pbindagorge
I have really tried to figure out how to do this, but I can't figure it out by what you wrote here. Can you please tell me more? Here's where I thought I should be attempting this. The validator var points to the return of $('#aspnetForm').validate()... $ddlCountries.change(function() {

[jQuery] Re: jQuery.noConflict() and firefox 2: errors - is this a bug?

2009-04-01 Thread Payalba
Eric Martin a écrit : Like it was mentioned above, the noConflict() call has to come right after loading jQuery and before loading the other libraries. -Eric I just make a typo in my previous message script type=text/javascript src=/js/jquery-1.3.2.min.js/script script !-- var

[jQuery] Re: [validate] How can I force element validation if the value is unchanged?

2009-04-01 Thread Jörn Zaefferer
Try this: $phoneNumber.data(previousValue, null).valid() Jörn On Wed, Apr 1, 2009 at 8:04 PM, pbindagorge pmbar...@gmail.com wrote: I have really tried to figure out how to do this, but I can't figure it out by what you wrote here. Can you please tell me more? Here's where I thought I

[jQuery] Re: [validate] How can I force element validation if the value is unchanged?

2009-04-01 Thread pbindagorge
That worked! Thank you so much for your quick replies and for all your hard work on this superb plugin! On Apr 1, 12:08 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: Try this: $phoneNumber.data(previousValue, null).valid() Jörn On Wed, Apr 1, 2009 at 8:04 PM, pbindagorge

[jQuery] Re: Beginner Question

2009-04-01 Thread Flavouski
That sort of helped, unfortunately I'll have multiple inputs that have the same name. And with that code I wouldn't be able to say i have this DOM object, get me the firstname. But, it was good to get to know some more of the syntax. Ends up the better solution, at least for my case, is just

[jQuery] Re: Getting all children, not just immediate children??

2009-04-01 Thread mkmanning
siblings() returns..siblings. Brothers/sisters, which aren't descendants. To get immediate children (sons/daughters), use children() To get descendants (sons/daughters, grandchildren, great- grandchildren, etc.) then use find() btw, do you mean to have a space here: .slideToggl e(); ? On Apr 1,

[jQuery] Animating absolute positions with percentage values?

2009-04-01 Thread Mike
Hi, I am trying to animate some cloud sprites so that they float across the screen. I have it working in all modern browsers (sorry, ie8 you are seeming to be way too buggy way to big of a step backwards to count as modern), but IE (including IE8) is giving me some headaches (what else is

[jQuery] Re: Animating absolute positions with percentage values?

2009-04-01 Thread Mike
For clarification, These css IDs are positioned absolutely within a holder div that has a 100% width and is set to overflow:hidden. On Apr 1, 3:51 pm, Mike mcpat...@gmail.com wrote: Hi, I am trying to animate some cloud sprites so that they float across the screen.  I have it working in all

[jQuery] Re: jQuery.noConflict() and firefox 2: errors - is this a bug?

2009-04-01 Thread Ricardo
Yes you do need it, unless you're doing all your javascript before the body is loaded. As the docs say, you need to call noConflict before loading other libraries, so your code would look like this: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://

[jQuery] Re: Getting all children, not just immediate children??

2009-04-01 Thread Brian Gallagher
Don't know how the space got there, but not in my original. I just quickly tried $(this).find(div.toggletarget).slideToggle(); but it didn't work as I suspected. As you can see in my snippit post I left the commented line in :

[jQuery] Re: Good Server-Side tabs to compliment jQuery tabs

2009-04-01 Thread Klaus Hartl
You can just use the CSS used by jQuery UI by adding the necessary classes to the HTML right away. Here's an example of the static HTML: http://jquery-ui.googlecode.com/svn/trunk/tests/static/tabs/tabs.html You can easily create themes with Themeroller: http://jqueryui.com/themeroller/ --Klaus

[jQuery] Re: JQuery/PHP debugging technique - any suggestions on how to do this?

2009-04-01 Thread LinkGuru
Thanks. I've installed the add-on. I'll give it a whirl. On Apr 1, 8:00 pm, Hector Virgen djvir...@gmail.com wrote: You should try using Firebug. You can print directly to the Firebug console from within PHP, or you can just echo some message and look at the response tab of the firebug

[jQuery] Re: Getting all children, not just immediate children??

2009-04-01 Thread mkmanning
Can you provide the relevant markup? On Apr 1, 2:21 pm, Brian Gallagher sinkingf...@gmail.com wrote: Don't know how the space got there, but not in my original. I just quickly tried $(this).find(div.toggletarget).slideToggle(); but it didn't work as I suspected. As you can see in my snippit

[jQuery] Re: Append asterisk to required field labels

2009-04-01 Thread James
I'm not sure what the asp.net MVC release of jquery is and if it's been modified from the original, but on my 1.3.2 (from jquery.com), the code works. So there is no problem with jQuery 1.3.2 regarding each (). There must be something else that's causing the issue. Do you still have somewhere in

[jQuery] Ajax Errors with Firefox 3.0.8 (latest release)

2009-04-01 Thread tallvanilla
Many of our websites users began reporting AJAX errors on all jQuery- enabled pages of our website. The common factor among these users is that all are using the latest update to Firefox: version 3.0.8. From what I've gathered, it might only affect get requests, but I can't be sure of that yet.

[jQuery] Re: jQuery/ HTML help needed

2009-04-01 Thread Warfang
Woah, thanks! It worked! I was bent on the idea that selectors had to have quotation marks. I suppose (in this case at least) thats untrue. Thank you. On Mar 31, 11:14 pm, Ricardo ricardob...@gmail.com wrote: Actually this is the perfect opportunity to put those href's into use: div

[jQuery] Re: will two JQuery libs conflicts?

2009-04-01 Thread RobG
On Apr 2, 1:51 am, brian bally.z...@gmail.com wrote: On Wed, Apr 1, 2009 at 11:01 AM, Xu bobxu1...@gmail.com wrote: Thanks. Can you elaborate it? You seem to suggest if my web page includes their actual JQuery file, there will be for sure problems.  Why is that? Thanks. Because you'll

[jQuery] Re: Ajax Errors with Firefox 3.0.8 (latest release)

2009-04-01 Thread James
I have not experienced such issues using FF3.0.8 and the latest version of jQuery (1.3.2). Which version of jQuery are you using? If possible, are you able to provide some code or samples of the content being transferred that's not working? Here's the Security Updates page for FF3.0.8:

[jQuery] Re: will two JQuery libs conflicts?

2009-04-01 Thread brian
On Wed, Apr 1, 2009 at 8:03 PM, RobG rg...@iinet.net.au wrote: On Apr 2, 1:51 am, brian bally.z...@gmail.com wrote: On Wed, Apr 1, 2009 at 11:01 AM, Xu bobxu1...@gmail.com wrote: Thanks. Can you elaborate it? You seem to suggest if my web page includes their actual JQuery file, there

[jQuery] DOM manipulation

2009-04-01 Thread gryzzly
Hello. Let's say I have $(document).ready(function() { $('.niceImage, .hiddenText').wrapAll('div class=wrapper/ div'); }); then I want to access newly inserted to the DOM div with class wrapper and do something with it; $(document).ready(function() { $('.niceImage,

[jQuery] Re: DOM manipulation

2009-04-01 Thread James
Try: $('.wrapper').height(1000); On Apr 1, 2:49 pm, gryzzly mrejz...@gmail.com wrote: Hello. Let's say I have $(document).ready(function() {     $('.niceImage, .hiddenText').wrapAll('div class=wrapper/ div');}); then I want to access newly inserted to the DOM div with class wrapper and

[jQuery] Re: DOM manipulation

2009-04-01 Thread Mauricio (Maujor) Samy Silva
$('.wrapper').height = '1000px'; and that will not work, because we don't have $('.wrapper') in working what should I do, to accomplish the desirable result? $('.wrapper').css('height', '1000px'); Maurício

[jQuery] Re: Ajax Errors with Firefox 3.0.8 (latest release)

2009-04-01 Thread tallvanilla
Thanks James. It would probably take an hour or more to reproduce a demo of the errors in a publicly-accessible space, so I'm hoping this is a known issue by now and that anyone who's also experienced it can shed some light on it. I had already checked the Mozilla security updates page. I

[jQuery] jQuery live to have the original livequery plugin function: on element add binding?

2009-04-01 Thread goodwill
I wonder if jQuery core live function could have such functionality? Now I am mixing both together, but there are some weird issues could occur- like if I am trying to encapsulate a livequery to trigger when a new div is added and setup live hook within, multiple hooks might occur (i.e. the event

  1   2   >