[jQuery] Re: XML Sorting using jQuery - is it possible?

2009-01-22 Thread Ricardo Tomasi
What kind of sorting? xml = 'base'; xml += 'item type=cone/item'; xml += 'item type=btwo/item'; xml += 'item type=dthree/item'; xml += 'item type=fthree/item'; xml += 'item type=athree/item'; xml += '/base'; var sorted = $(xml).filter('item').get().sort(function(a,b){ var at =

[jQuery] Re: ui.tabs question

2009-01-22 Thread Alexandre Plennevaux
So i've tried using the latest build of ui1.6rc5, including the tabs + jquery 1.3 and i reproduced exactly the demo sample available on the jqueryUI ui.Tabs demo page with the required CSS files, but it still breaks the tabbing functionality. I've reduced my code to simply call $(#mydiv

[jQuery] .append with a var

2009-01-22 Thread Nikola
Hello, I am trying to figure out how to .append a php session $var to a given div. I'm not sure what the correct syntax is. I was trying something along the lines of how I'd display the var in HTML: $(#someDiv).append(Some value is:b'.$var.'/b); I'm not sure the best way to go about this.

[jQuery] Re: select next n somethings

2009-01-22 Thread Ricardo Tomasi
Yeah, 'prox' should be 'n'. I got the wrong version of the script, here is the proper one: $.fn.until = function(end){ var n = this.next(), h = []; while( n[0] !n.is(end) ) { h.push(n[0]); n = n.next(); } return this.add(h); }; $('nada') or was there to create an

[jQuery] Re: AJAX delay response.

2009-01-22 Thread Genus Project
Bump. It is the same on IE7. I really have no idea why. I am using this same setup to my previous projects but they are all working fine :) On Jan 21, 6:14 am, Samuel samuel.yh...@gmail.com wrote: I think this is a firebug problem, which delayed the page load. if you disable firebug, it can

[jQuery] Re: Download a file from server...

2009-01-22 Thread Genus Project
or you can do this. 1. your php create the file from your post. 2. return something to the script ($.post) that says you have successfully created the file or maybe with the filepath in it in json or whichever format it is. 3. redirect your current window to the path of this file. But it may

[jQuery] Slide down and up element and remain vertical size

2009-01-22 Thread Mech7
I have an example here: http://www.mech7.net/tmp/slide_down/ When i hover the elements it jumps a little in vertical space, does anybody know a solution how to remain the space my code is : $(document).ready(function(){ $('#portfolio div.item:first div').addClass('open');

[jQuery] select the parent recursively

2009-01-22 Thread Gill Bates
current we have the html like following and I always want get element: span xmlns=asa started from the element input: span xmlns=asa span p input value= size=10 class=exercise-input exercise-input- formula name=1/ /p /span /span or span xmlns=asa span/span span p

[jQuery] Re: .append with a var

2009-01-22 Thread Liam Potter
you would need to have the javascript with the php in the same file so it would be something like this ?php $var = testing; ? script type=text/javascript $(function () { $(#someDiv).append(Some value is:b?php $var ?/b); }); /script Nikola wrote: Hello, I am trying to figure out how to

[jQuery] Is A Child Of?

2009-01-22 Thread James Hughes
Hi, This is probably a really easy question an I apologise if it appear stupid but I am clueless right now. Given 2 jQuery objects (a,b) how can I tell if b is a child of a? James This e-mail is intended solely for the

[jQuery] not updating images after ajax request

2009-01-22 Thread pere roca
hi all, I'm having problems updating images dynamically. The thing is that the src attribute is allways the same (that's not an error but I need it this way) but the file the src points to is dynamically created via php (an xml that is used to create the new image). The new image is not updated

[jQuery] Re: referring back to a specific element

2009-01-22 Thread Ron
Oh... I thought that there must be some kind of an attribute, like this.objid or something similar to get the reference to the object, but could not find it. Apparently it is much simpler than I thought... I did a quick test and it seems to be working fine. Thanks a lot Ricardo.

[jQuery] Re: Slide down and up element and remain vertical size

2009-01-22 Thread Richard D. Worth
You may want to look at the jQuery UI Accordion (if you haven't already): http://ui.jquery.com/demos/accordion#mouseover - Richard On Thu, Jan 22, 2009 at 4:08 AM, Mech7 chris.de@gmail.com wrote: I have an example here: http://www.mech7.net/tmp/slide_down/ When i hover the elements it

[jQuery] Re: Is A Child Of?

2009-01-22 Thread Richard D. Worth
My first thought was to try these and neither worked $(b, a).length a.find(b).length Also, no luck here $(b[0], a[0]).length a.find(b[0]).length In the end this is the one I could get to work $(b).parents().filter(function() { return this === a[0]; }).length - Richard On Thu, Jan 22, 2009

[jQuery] Re: Is A Child Of?

2009-01-22 Thread James Hughes
Excellent. Funny it seems like such a common task when you think about it though I've never needed it before and given the verbosity of the solution it seems not many other people have need it either :-P Anyways thanks again you saved my sanity. James.

[jQuery] Re: Slide down and up element and remain vertical size

2009-01-22 Thread Mech7
That is what i used first but it's very specific about the html elements like it expects a p tag as content, that's why i decided to make my own... :) On Jan 22, 4:28 pm, Richard D. Worth rdwo...@gmail.com wrote: You may want to look at the jQuery UI Accordion (if you haven't already):

[jQuery] Re: Slide down and up element and remain vertical size

2009-01-22 Thread Jörn Zaefferer
Actually you can use pretty much any element you want. More details here: http://docs.jquery.com/UI/Accordion/accordion Jörn On Thu, Jan 22, 2009 at 11:03 AM, Mech7 chris.de@gmail.com wrote: That is what i used first but it's very specific about the html elements like it expects a p

[jQuery] Calling my JQuery function after adding new list items

2009-01-22 Thread cajchris
Hi, I have the following list structure on my site: UL id=topnav LI A id=11386_Tab onclick= href=#Home/A UL style=TOP: 1.7em LI A id=m11387 title=Complaint Search onclick= href=#Complaint Search/A

[jQuery] Re: Calling my JQuery function after adding new list items

2009-01-22 Thread Liam Potter
if you are using v1.2.6 use the LiveQuery plugin, if you are using v1.3 use the .live() function http://docs.jquery.com/Events/live#typefn cajchris wrote: Hi, I have the following list structure on my site: UL id=topnav LI A id=11386_Tab

[jQuery] Re: not updating images after ajax request

2009-01-22 Thread Genus Project
maybe it is caching the image :) On Jan 22, 1:27 pm, pere roca pero...@gmail.com wrote: hi all, I'm having problems updating images dynamically. The thing is that the src attribute is allways the same (that's not an error but I need it this way) but the file the src points to is

[jQuery] Re: Calling my JQuery function after adding new list items

2009-01-22 Thread cajchris
But I do not see how I can use this. The problem I have is that when some back end java code adds a new UL sub menu I need my JQuery to refresh and pick this up. LiveQuery seems to require some event such as a click, mouseout etc etc. I don't think this applies here. Cheers On Jan 22, 10:35 am,

[jQuery] Re: select the parent recursively

2009-01-22 Thread Stephan Veigl
try: var input = $(input); var parent = input.parents(span[xmlns]); by(e) Stephan

[jQuery] Re: Calling my JQuery function after adding new list items

2009-01-22 Thread Liam Potter
the event would be the hover... cajchris wrote: But I do not see how I can use this. The problem I have is that when some back end java code adds a new UL sub menu I need my JQuery to refresh and pick this up. LiveQuery seems to require some event such as a click, mouseout etc etc. I don't

[jQuery] Newsgroup Quote Etiquette

2009-01-22 Thread Liam Potter
Hello, I've noticed this more and more lately and I think it is due to people using web based readers like Google Groups and Nabble. When replying to a thread please leave the quotes intact, it can be quite frustrating to come across an answer or question and have no idea in relation to

[jQuery] Re: Syntax similar to IN in SQL

2009-01-22 Thread Rick Faircloth
Good stuff, Ricardo! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Ricardo Tomasi Sent: Wednesday, January 21, 2009 11:50 PM To: jQuery (English) Subject: [jQuery] Re: Syntax similar to IN in SQL var abc =

[jQuery] Re: sortable portlets

2009-01-22 Thread posh beck
On Tuehttp://streamyx-router.blogspot.com/2008/06/streamyx-wireless-router-linksys.html, Jan 20, 2009 at 8:01 PM, shmuelzon shmuel...@gmail.com wrote: hey, i'm new to the whole jQuery scene, and i'm trying to create a small portal with frames you can rearrange (igoogle style) i've seen

[jQuery] Catching ajax request errors

2009-01-22 Thread ZNS
Is this possible? I do not want to use the $.ajaxError event but catching the error directly like this: try { $.getJSON(.); } catch (x) { alert(failed); }

[jQuery] Autocomlete plugin not working in Opera and IE 6

2009-01-22 Thread xfactorx
Am trying to use the Autocomplete plugin which so far works in Firefox but doesn't work in IE6 and opera 9.x on Ubuntu Linux. Below is my code. So sorry if this has been answered before. -Backend Code-- ?php $name = $_GET['q']; if

[jQuery] showing animated gif when redirecting to new a page

2009-01-22 Thread misskittyt
Hi all, I'm having trouble showing an animated gif (to indicate that the page is loading) when redirecting to a new page. There are several tabs a user can choose, each taking them to a different page in the site. I think this almost works, but I don't like how the screen goes entirely blank.

[jQuery] jQuery Form Validator

2009-01-22 Thread marzapower
I've written a small jQuery Form Validator plugin, of which you can find info at: http://www.marzapower.com/blog/show/250 Please, download it, try it and let me know what you think!

[jQuery] Display GIF animation during jQuery loop

2009-01-22 Thread Borax
Hi, I have a probably basic problem. I actually want to display a simple GIF animation during a jQuery function which actually takes a few seconds to run. Basically, I do : $('IMG.my_gif_animation').show(); try { $('...').each(function() { ... }); // which takes a few seconds }

[jQuery] Callback problem

2009-01-22 Thread Alex Sergeev
Hello! i have a code var handler = editElementName; function showModalBox(width, height, handler, id) { ... $(.btnSave).click(handler + Save); ... } function editElementNameSave(e) { alert(1); } Why dont work event click? PS sorry for my English - i am from Russia

[jQuery] deserialize plugin latest version?

2009-01-22 Thread c.sokun
does anyone happen to know what was the latest version of form deserialize plugin? Where can I grab it? Cheers

[jQuery] Cluetip: Close on clicking another tip

2009-01-22 Thread Sonny
Hi - I'm completely stuck with a Cluetip issue. Ive set activation to 'click' and sticky to 'true'. However, I wish to make it so that if another cluetip link is clicked whilst one is already open, it will close the current one and open the new one that the user has clicked. I hope that made

[jQuery] 1.3.1 is over 10x slower than 1.2.6

2009-01-22 Thread Loren
Hello, I have an application that does lots of HTML injection, animation, and manipulation, and I'm a long time user and fan of jQuery. Recently I downloaded 1.3.1, and my app became really sluggish. Normally it loads in under a second, but with 1.3.1 it takes over 3 seconds to load, and the

[jQuery] Re: Form Plugin with file upload

2009-01-22 Thread Mike Alsup
Sorry for the delayed response. I tried taking a break from it and coming back to it with a fresh mind. It's not easy for me to set up a page for you to test because the app requires a log in. It is always helpful if you can simplify the problem down to a small test page. 90% of the time

[jQuery] Re: form standart submit event doesn't handle by jquery submit event

2009-01-22 Thread Mike Alsup
Example from documentation $(form).submit(function() {       if ($(input:first).val() == correct) {         $(span).text(Validated...).show();         return true;       }       $(span).text(Not valid!).show().fadeOut(1000);       return false;     }); html: pType 'correct' to

[jQuery] Re: Catching ajax request errors

2009-01-22 Thread Mike Alsup
Is this possible? I do not want to use the $.ajaxError event but catching the error directly like this: try { $.getJSON(.);} catch (x) { alert(failed); } No, that won't work. Either use the global error handler or use $.ajax instead of $.getJSON and pass in a local error

[jQuery] Re: Callback problem

2009-01-22 Thread jQuery Lover
I have tried this: var handler = editElementName; function editElementNameSave() { alert('Hurray!'); console.log(1); } function showModalBox(handler) { $(.1).click(function(){ console.log(2); (handler + Save)();

[jQuery] Need access to index within loop

2009-01-22 Thread elduderino
HI, I have this code: $(document).ready(function(){ $('li').each(function(i) { alert(i); $('li:eq(i)').fadeIn('slow'); }); }); I want to iterate over each li element and fade it inwith a delay for each onei'll deal with the delay in a bit but

[jQuery] how to use namespace and Class in jQuery ?

2009-01-22 Thread Alex
Hi all, I ' m new to jQuery. How to use namespace and Class , like this: cm.TestClass = function { } cm is namespace. Alex

[jQuery] USING FLASH + ACTIONSCRIPT CALLBACK FUNCTION.

2009-01-22 Thread Jacob Jarquin
Hi, The problem i faced when i use iframes to post data is that i can not send information to parent frame (like a json response) if the url of the iframe is different. You can use Flash + actionscript to POST DATA crossdomain. You only need a crossdomain file policy in your server web root.

[jQuery] Re: Cluetip: Close on clicking another tip

2009-01-22 Thread Sonny
Sorry all, looks like my JS file got corrupted. All fixed now. On Jan 22, 11:22 am, Sonny endofra...@gmail.com wrote: Hi - I'm completely stuck with a Cluetip issue. Ive set activation to 'click' and sticky to 'true'. However, I wish to make it so that if another cluetip link is clicked

[jQuery] Re: not updating images after ajax request

2009-01-22 Thread pere roca
ok, I understand, thanks. I have seen over there that a possible solution can be just to add a time stamp to the image: $(#somethin).attr(src, user1.jpg?x= + new Date()); but it's not useful in my case, as my src points to a web service that creates an images with the parameters you send;

[jQuery] Re: Can't get typed value of input

2009-01-22 Thread abhisek
Thanks for your response. I think that was a livequery issue. Used the following function to get input elements: document.getInputByName = function(name) { allInputs = document.getElementsByTagName(input); for(i=0;iallInputs.length;i++) {

[jQuery] Re: Looping through headers object

2009-01-22 Thread shinobi
Sorry, yes, I'm using tablesorter plugin. Thank you Ricardo for the answer, this evening i'm going to try your solution. Mattia On 22 Gen, 06:06, Ricardo Tomasi ricardob...@gmail.com wrote: I assume you're using the Tablesorter plugin? This should work. var headers = {}; $('#table thead

[jQuery] jQuery 1.3 incompatible plugins

2009-01-22 Thread Gordon
Is there a list of plugins that aren't compatible with jQuery 1.3 or that have been updated in order to do so? I'd like to be able to check my plugins against a list if there is one before upgrading so I don't get any nasty surprises.

[jQuery] jQuery 1.3 incompatible plugins

2009-01-22 Thread Gordon
Just a quick question, is there a list of plugins that don't work with jQuery 1.3, or a list of plugins that have been upgraded to work with it? I want to be able to quickly check my list of plugins against a list of known incompatibilities before upgrading.

[jQuery] vsdoc for new jquery 1.3.1

2009-01-22 Thread Fisher Ning
Hi guys, Does anyone know when the jQuery Visual studio doc (jquery-vsdoc.js) will be updated for new 1.3.1? Is there any plan for this? Regards, Fisher

[jQuery] Re: not updating images after ajax request

2009-01-22 Thread Mike Alsup
I have seen over there that a possible solution can be just to add a time stamp to the image: $(#somethin).attr(src, user1.jpg?x= + new Date()); but it's not useful in my case, as my src points to a web service that creates an images with the parameters you send; it's something like...

[jQuery] Re: vsdoc for new jquery 1.3.1

2009-01-22 Thread John Resig
The team at Microsoft is already working on it. Hopefully it'll be ready soon. --John On 1/22/09, Fisher Ning ning...@gmail.com wrote: Hi guys, Does anyone know when the jQuery Visual studio doc (jquery-vsdoc.js) will be updated for new 1.3.1? Is there any plan for this? Regards,

[jQuery] Re: 1.3.1 is over 10x slower than 1.2.6

2009-01-22 Thread John Resig
I'm not seeing this, no. Do you have a link to the app? What version of Firebug are you using? --John On 1/22/09, Loren lorenw...@gmail.com wrote: Hello, I have an application that does lots of HTML injection, animation, and manipulation, and I'm a long time user and fan of jQuery.

[jQuery] Re: Syntax similar to IN in SQL

2009-01-22 Thread pixelwiz
That's some cool code. Thanks Guys! -Roman On Jan 21, 11:49 pm, Ricardo Tomasi ricardob...@gmail.com wrote: var abc = /^A|B|C$/.test( $('#price_group_lesson').val() ); $('#price_group_lesson_yes')[abc ? 'slideDown' : 'slideUp']('fast') (it could be a one-liner but I splitted it for

[jQuery] Re: jQuery Form Plugin - success callback function isn't called

2009-01-22 Thread Redzzzzz
Hello, Topic is somewhat old, but I'm stuck on the same thing.. 'success' isn't called I've managed to narrow it down somewhat on: http://www.manneke.com/ajaxform/test.php The first form is to an external php file that echoes 'hello' afterwhich success IS NOT called. The second form is to

[jQuery] Re: Catching ajax request errors

2009-01-22 Thread MorningZ
I've got a wrapper function i use around the .getJSON method which handles errors nicely function reqJSON(url, params, success, error) { var CallParams = {}; CallParams.type = params.Method || POST; CallParams.url = url; CallParams.processData = true; CallParams.data =

[jQuery] Re: superfish question

2009-01-22 Thread mckag001
Hi...thanks for your interest. Unfortunately I can't give you a link because it's on an intranet. I guess I'm beyond help. Thanks again for the reply. On Jan 21, 11:23 am, David Meiser dmei...@gmail.com wrote: Do you have a link?  It's a little hard to diagnose without being able to see the

[jQuery] Re: jQuery Form Plugin - success callback function isn't called

2009-01-22 Thread Mike Alsup
Topic is somewhat old, but I'm stuck on the same thing.. 'success' isn't called I've managed to narrow it down somewhat on:http://www.manneke.com/ajaxform/test.php The first form is to an external php file that echoes 'hello' afterwhich success IS NOT called. The second form is to a

[jQuery] help with jQuery and updating multiple div ids at same time

2009-01-22 Thread eXhaLe
Hi, I've made a website with a shoutbox and a login form for admins, the thing is.. I want the login div to update when i type in a nickname in the shoutbox and vise verca, which it acturally does when nick is typed in on shoutbox but not the other way around. When the logout button and the

[jQuery] Calling Joel Birch! - jQuery menu widget Issue

2009-01-22 Thread mckag001
I'm using your Superfish v1.4.8 - jQuery menu widget and am having an issue. When I navigate away from the main index page and then use the back button, the menu in which I used is still there, opened up and highlighted. If you have any insight on what could be causing this I would greatly

[jQuery] Re: multiple submit sends with CSS Button

2009-01-22 Thread Robert
any idea?

[jQuery] Re: jQuery 1.3 incompatible plugins

2009-01-22 Thread Stefan Sturm
Hello, good Question. I have problems with Fancybox and jQuery 1.3... Greetings, Stefan Sturm 2009/1/22 Gordon grj.mc...@googlemail.com: Just a quick question, is there a list of plugins that don't work with jQuery 1.3, or a list of plugins that have been upgraded to work with it? I want

[jQuery] bug in id selector?

2009-01-22 Thread Finn Herpich
Hi everyone, the attached example-code shows a problem I encountered today (firebug needed). If an id-attribute contains dots, like p id=test2.3/p jQuery isn't able to find it. If the dots are replaced by underscores everything works fine. Afaik there is no limitation for the id which

[jQuery] Re: jQuery 1.3 incompatible plugins

2009-01-22 Thread Gordon
Sorry for the double posting! Google groups seems to have gone nuts on me, it's also decided that my google email address should be my primary address instead of the address I've used for years, and as a result I'm no longer subscribed to any of my groups. On Jan 22, 2:26 pm, Stefan Sturm

[jQuery] Re: bug in id selector?

2009-01-22 Thread Liam Potter
jQuery will read it as id test2 with the class 3 While periods are allowed in the attribute I would advise against them, as it's not just jQuery that could struggle with them but most CSS as well, as #test2.3 with again read as id test2 with the class 3. Finn Herpich wrote: Hi everyone,

[jQuery] Re: Syntax similar to IN in SQL

2009-01-22 Thread Eric Garside
Oh, neat idea for some quick prototypes if you'll be using this a lot. String.prototype.is = function(){ var rgx = new RegExp('^' + [].slice.call(arguments).join(|) + '$'); return rgx.test(this) } Should mimic: /^A|B|C$/.test( $('#price_group_lesson').val() ); Called by:

[jQuery] Re: not updating images after ajax request

2009-01-22 Thread pere roca
sorry, unexpectedly adding a random bonus works! thanks to all of you http://edit.csic.es/geoserver/wms/GetLegendGraphic?VERSION=1.0.0FORMAT=image/pngWIDTH=25HEIGHT=20LAYER=topp:test_csvimportgispoints2sld=http://edit.csic.es/fitxers/sld/initial/points/NO_BORRAR.sld?x=yy

[jQuery] Re: bug in id selector?

2009-01-22 Thread finn.herp...@marfinn-software.de
Sounds good. Too bad my ids are given by an external xml-file. But since I wrote a workaround to replace all . in the ids with _ it's fine for me ;). Thanks Cheers On Jan 22, 4:13 pm, Liam Potter radioactiv...@gmail.com wrote: jQuery will read it as id test2 with the class 3 While periods

[jQuery] Re: XML Sorting using jQuery - is it possible?

2009-01-22 Thread skube
Thanks for the reply, but that doesn't seem to be an XML object at all. Isn't that simply a string that looks like XML. Also, by using get () aren't you simply converting that string into an array anyway? On Jan 22, 3:00 am, Ricardo Tomasi ricardob...@gmail.com wrote: What kind ofsorting?

[jQuery] Re: Download a file from server...

2009-01-22 Thread Mario Soto
It must be using http headers: header('Content-Disposition: inline; filename='. $filename.'.pdf'); header('Content-type: application/x-pdf'); echo $pdfData; die(); By example. - On Jan 22, 3:05 am, Genus Project genusproj...@gmail.com wrote: or you can do

[jQuery] Re: Download a file from server...

2009-01-22 Thread Mario Soto
In the post above by Alexandre Plennevaux, the link says how to. :) On Jan 22, 9:38 am, Mario Soto canc...@gmail.com wrote: It must be using http headers:         header('Content-Disposition: inline; filename='. $filename.'.pdf');         header('Content-type: application/x-pdf');        

[jQuery] Add Checkboxes in a table.

2009-01-22 Thread Andy
I need to be able to dynamically add a new rows to a table and add elements such as check boxes, plain text and hyperlinks. I cannot find any examples of this. Would anyone have any samples or a good url? Thanks!

[jQuery] Re: [validate] Problem with trigger submit in validation plugin update 1.5.1

2009-01-22 Thread viktorlidh...@gmail.com
Thanks for the quick reply! Your code does submit the form, however it does unfortunately submit the form even though verification should fail. :( Anyone got an idea of how to solve this issue? Regards, Viktor On 21 Jan, 14:58, Liam Potter radioactiv...@gmail.com wrote: $(”form

[jQuery] Re: [validate] Problem with trigger submit in validation plugin update 1.5.1

2009-01-22 Thread Liam Potter
Never rely on client-side scripting to validate forms completely, use it to make the site more user friendly sure, but you should definitely be checking it server side. why aren't you using a form submit button? viktorlidh...@gmail.com wrote: Thanks for the quick reply! Your code does

[jQuery] Re: XML Sorting using jQuery - is it possible?

2009-01-22 Thread Balazs Endresz
jQuery can parse most text to xml but that doesn't work in all cases: http://groups.google.com/group/jquery-en/browse_frm/thread/95718c9aab2c7483/af37adcb54b816c3?lnk=gstq=parsexml#af37adcb54b816c3 You can also copy Array.prototype.sort to $.fn and it will work on the jQuery object as well:

[jQuery] Re: Need access to index within loop

2009-01-22 Thread brian
You're passing the string i. Remember that the selector is just a string passed to the jQuery object. Try this: $('li:eq('+i+')').fadeIn('slow'); On Thu, Jan 22, 2009 at 5:41 AM, elduderino jamesfiltn...@gmail.com wrote: HI, I have this code: $(document).ready(function(){

[jQuery] Re: Add Checkboxes in a table.

2009-01-22 Thread ryan.joyce...@googlemail.com
maybe try .append-ing stuff to the table? $('table#my_table').append( stuff to append goes here ) On Jan 22, 3:42 pm, Andy adharb...@gmail.com wrote: I need to be able to dynamically add a new rows to a table and add elements such as check boxes, plain text and hyperlinks.  I cannot find any

[jQuery] Re: jQuery Form Plugin - success callback function isn't called

2009-01-22 Thread Sander Manneke | Internet Today
Right, didn't think of that. I think I'll tackle that using Yahoo's suggested solution http://developer.yahoo.com/javascript/samples/proxy/php_proxy_simple.txt Thanks.. -Oorspronkelijk bericht- Van: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] Namens Mike Alsup

[jQuery] Re: vsdoc for new jquery 1.3.1

2009-01-22 Thread Fisher Ning
Excellent. Thank you. 2009/1/22 John Resig jere...@gmail.com The team at Microsoft is already working on it. Hopefully it'll be ready soon. --John On 1/22/09, Fisher Ning ning...@gmail.com wrote: Hi guys, Does anyone know when the jQuery Visual studio doc (jquery-vsdoc.js) will be

[jQuery] Bug? ajax request headers not being modified by beforeSend (jquery 1.3.1)

2009-01-22 Thread Nicolas R
I need some help here guys. I'm trying to modify the content-type and accept-charset request headers of an ajax call and it seems that beforeSend does not really change the XHR object. My code is something like this: beforeSend : function(xhr) {

[jQuery] Re: Callback problem

2009-01-22 Thread Michael Geary
Alex's code was doing the equivalent of: $(.btnSave).click(editElementNameSave); The click() function, like all event functions, expects to receive a *reference* to a function, not the *name* of a function. Your code is doing the equivalent of: editElementNameSave(); You can't call a string

[jQuery] Book-like UI for jQuery?

2009-01-22 Thread ChimericDream
I've seen a number of sites using a book-like navigation for catalogs and such. Essentially, you can grab a page by it's edge and flip the page, just like you would a real book. Does anything like this exist for jQuery? I tried searching the plugins, I looked at the UI library, and couldn't

[jQuery] Jquery tree menu Ul Li Ul

2009-01-22 Thread mehstg1319
Hi everybody Just looking for a couple of words of advice really as I haven't seen anything on the web that seems to fit what I am looking for. Basically...I have built a two tier menu system using Jquery to show and hide the second level when certain parts are clicked. I was wondering if it

[jQuery] Popup going under flash object

2009-01-22 Thread ptmurphy
I have a web page I have been working on and everything looks good in IE. However, in Firefox I am having a problem with the datepicker popup window going under a flash object that is below the input field on the page. The datepicker.css file (this is the only css file I am using in this

[jQuery] $.ajax timeout and trouble with Microsoft IIS 6

2009-01-22 Thread Stefano Corallo
Hi all, i've a client side scrit that do a request to a server the server sleep for a 10 seconds and the respond, in the client side script i setup the timeout option at 1 second (1000) and i want to catch the error thrown (like explained all around the web :) ) a bit of code explain better:

[jQuery] Programatically enabling ''submit' button in ASP.NET

2009-01-22 Thread yaip
I have the following aspx page %@ Page Language=VB AutoEventWireup=false CodeFile=Default.aspx.vb Inherits=_Default % !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/xhtml; head runat=server

[jQuery] Re: JQuery error with java applet running

2009-01-22 Thread turbonick
Thanks, I upgraded and no more error message! Nick On Jan 21, 5:06 pm, Mike Alsup mal...@gmail.com wrote: Java class LobbyClientApp has no public field or method named jQuery1232546999783 In jquery-1.2.6.js Line 667 The JQuery code in that file is: id = elem[ expando ] = ++uuid; I

[jQuery] Index of Parent TD

2009-01-22 Thread Aarron
Hi there, I have a link which sits inside a td within a tr within a table. What I would like to do is find out which td (which column) in the table this link is within - I need to find the column index. Once I have this I can then remove the column from the table. Any ideas on how to do this?

[jQuery] Split data grid

2009-01-22 Thread Mandrake
I've been using flexigrid and tablesorter for my data grid needs. However, i need a split datagrid function that these two do not have. You can check out what I mean by following this URL. http://dhtmlx.com/docs/products/dhtmlxGrid/samples/frozen_columns/pro_grid_split.html# Basically I just

[jQuery] problem with jqmodal and ui datepicker

2009-01-22 Thread Netzai
Hello. Some body can help me? I heave a problem with datepicker inside a modal window with this plugins (jqModal and ui datepicker). when datepicker show this appear in a back layer. How can i do for fixit? My javascript code: var x = $(document) x.ready(function(){ $(#wmContent).jqm()

[jQuery] Re: select next n somethings

2009-01-22 Thread Joe
This: var preBefore = $('p:eq(3)').prev('pre').text(); Only grabs the text of the preceding text contained within the pre tag. If you need all the pre tags prior, then use prevAll() http://docs.jquery.com/Traversing/prevAll Joe http://www.subprint.com On Jan 19, 5:03 pm, JLundell

[jQuery] Re: Popup going under flash object

2009-01-22 Thread amuhlou
Is the flash div given a position, either relative or absolute? If not, try giving it position relative along with the low z-index. Also, do you have a test page somewhere? On Jan 22, 10:36 am, ptmurphy ptmur...@bellsouth.net wrote: I have a web page I have been working on and everything

[jQuery] redmond theme accordion IE6 bug

2009-01-22 Thread Dan Vega
I am using the accordion and everything is working great in FF3/IE7. In IE 6 the images used for the headers are about 50 pixels below where the accordion is. Does anyone know why this would be happening?

[jQuery] Re: Location Persistence... Almost

2009-01-22 Thread betweenbrain
Hi Jed, Are you using cookies (I seem to remember example 3 or 4) ? Also, I believe treeview uses span as the parent element. That may clue you in the right direction. It would be helpful if you could post your code or a website with this example. Best, Matt On Jan 21, 6:42 pm, Jed

[jQuery] Re: Book-like UI for jQuery?

2009-01-22 Thread Richard D. Worth
This isn't exactly what you describe, but gets you maybe half-way: http://www.webresourcesdepot.com/attractive-jquery-page-curl-plugin/ - Richard On Thu, Jan 22, 2009 at 12:45 PM, ChimericDream muz...@gmail.com wrote: I've seen a number of sites using a book-like navigation for catalogs and

[jQuery] Re: redmond theme accordion IE6 bug

2009-01-22 Thread Jörn Zaefferer
This has been fixed in the repository. You can get the latest accordion css file here: http://jquery-ui.googlecode.com/svn/trunk/themes/base/ui.accordion.css The changset is here: http://ui.jquery.com/bugs/changeset/1755 Jörn On Thu, Jan 22, 2009 at 7:24 PM, Dan Vega danv...@gmail.com wrote:

[jQuery] Re: Popup going under flash object

2009-01-22 Thread Kean
Problem might be with flash. add param wmode=transparent embed wmode=transparent On Jan 22, 7:36 am, ptmurphy ptmur...@bellsouth.net wrote: I have a web page I have been working on and everything looks good in IE.  However, in Firefox I am having a problem with the datepicker popup window

[jQuery] Re: Add Checkboxes in a table.

2009-01-22 Thread Kean
Let me guess, you wanted to add a new row and it is almost identical to the row before it. This will probably work. $row = $('table tr:last-child').clone(); $row.appendTo('table'); On Jan 22, 7:42 am, Andy adharb...@gmail.com wrote: I need to be able to dynamically add a new rows to a table

[jQuery] Re: jQuery.support IE6 or later

2009-01-22 Thread Eric Martin
The question is - how to use the new $.support code to achieve the same result. I submitted a patch that seems to work. It needs a review and some testing: http://dev.jquery.com/ticket/3960 On Jan 21, 3:43 am, Mauricio \(Maujor\) Samy Silva css.mau...@gmail.com wrote: It will be maintained !

[jQuery] Re: Popup going under flash object

2009-01-22 Thread amuhlou
In Firefox 2 Mac the wmode=transparent parameter causes a bug. If flash with wmode=transparent is playing, some things that go over top of the flash area will actually pause or stop the movie. It's fixed in FF3 Mac so not a whole lot you can do for those still on v2, but at least the amount of

[jQuery] Re: bug in id selector?

2009-01-22 Thread spinnach
I believe that it will function as intended if you escape the dot, like so: $(#test2\.3) although I've tried now in Firebug and it seems you have to escape the slash too, like so (don't know why, is it because of Firebug, or?): $(#test2\\.3) Cheers, Dennis. On Jan 22, 5:21 pm,

  1   2   >