[jQuery] Re: Modal Confirmation trying to use for form validation

2010-05-01 Thread Ron Mast
Nevermindfigured it out :) On Mon, Apr 19, 2010 at 9:44 AM, Ron Mast wrote: > Good morning gang, > > I'm attempting to use Modal Confirmation from > http://jqueryui.com/demos/dialog/#modal-confirmation > > I have the example working and code looks like so: > > > >         >        jQuery U

[jQuery] Re: Newbie Question: Finding and manipulating an element

2010-03-02 Thread Greg Tarnoff
Aaron, Not sure if you caught it, but I screwed up some quotes in my code snippet (stupid iphone). It should be: $('ul.foo li ul').addClass("bar"); On Mar 1, 9:25 am, Aaron Johnson wrote: > Greg, Nathan, Thanks very much for your help! > > On 1 March 2010 14:58, Nathan Klatt wrote: > > > On M

[jQuery] Re: keyup() fires multiple times?

2010-03-01 Thread Keith Hughitt
Looks like the problem is OS-specific. In Ubuntu 9.10, for example, there is an option that is enabled by default in the user's keyboard preferences which causes key-holds to simulate multiple key-presses. Turning this off results in the expected behavior. On Windows, the default behavior is for ke

[jQuery] Re: Newbie Question: Finding and manipulating an element

2010-03-01 Thread Greg Tarnoff
This will add the class for you. Put it in the document ready function if you want it on page load or in whatever function you want to call it from. $('ul.foo li 'ul").addClass("bar"); On Mar 1, 5:06 am, Aaron Johnson wrote: > Hello... > > I have an unordered list containing nested lists... > >

[jQuery] Re: Using jQuery UI with Google Maps

2010-03-01 Thread Thai Dang Vu
I think I found an answer for this problem. The answer is: do not create a dialog on the fly (i.e. do not create a div on the fly and then $(div).dialog()), but create a dialog before initializing the google map. On Wed, Feb 24, 2010 at 2:41 PM, Thai Dang Vu wrote: > Hi, > > I create a jQuery di

Re: [jQuery] Re: Accordion help ....

2010-02-28 Thread Nathan Klatt
On Sun, Feb 28, 2010 at 12:00 AM, Erik wrote: >  { $(this).removeClass("ui-state-active"); } No, don't do that - that'll screw up the accordion, I expect. I mean something in the css like: .ui-state-active:hover { background-color: inherit; /* or "none" or some specific color */ } Nathan

[jQuery] Re: Accordion help ....

2010-02-27 Thread Erik
Thanks nathan... Where would I place this in this? $(function() { $("#accordion").accordion({ autoHeight: true, header: '.subcat' }); { $(this).removeClass("ui-state-active"); } Is this the correct format? Erik On Feb 26, 3:56 pm, Nathan Klatt wrote: > On Fri, Feb 26, 2010 a

[jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!!!!!

2010-02-27 Thread Erik
I looked at and I still like the easy tag... Erik On Feb 26, 8:24 am, "Cesar Sanz" wrote: > this IS interesting!! > Some geeks works fine! > > > > - Original Message - > From: "Vikas Patidar" > To: > Sent: Thursday, February 25, 201

Re: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!!!!!

2010-02-26 Thread Cesar Sanz
this IS interesting!! Some geeks works fine! - Original Message - From: "Vikas Patidar" To: Sent: Thursday, February 25, 2010 2:51 PM Subject: Re: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !! Hi, there is another solution more easy and cool try it... C

Re: [jQuery] Re: How to check TD background image has been loaded.

2010-02-26 Thread Liam Byrne
That won't trigger a load event This is as close as you'll get (using an image object to actually load it, and then using it. var imageObj = new Image(); $(imageObj).attr("src",imagePath).load(function(){ // do whatever else you want to do in here too $("#leftCol").css("background

[jQuery] Re: How to check TD background image has been loaded.

2010-02-26 Thread jscharf
2 possibilities: via attribute: $("#mytd").attr("background", "path/to/image.jpg"); or via CSS $("#mytd").css("background-image", "path/to/image.jpg"); that should work fine for your needs (make sure the paths are correct)

Re: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!!!!!

2010-02-25 Thread Vikas Patidar
inal Message - > From: "Erik" > To: "jQuery (English)" > Sent: Wednesday, February 24, 2010 6:32 PM > Subject: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !! > > > http://www.dillerdesign.com/experiment/DD_roundies/ > > On

Re: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!!!!!

2010-02-25 Thread Cesar Sanz
thanks.. First time I heard about it.. .cool stuff! - Original Message - From: "Erik" To: "jQuery (English)" Sent: Wednesday, February 24, 2010 6:32 PM Subject: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !! http://www.dillerdesign.com/experiment/

[jQuery] Re: JQPRINT - Need help!!

2010-02-25 Thread Fabio Balossi
argh, i send the answer only to the author. well for anyone else : you have to set an ID to the A element, the same ID of the function's trigger, then set a class .toprint fot the elements to print, finally set to the jqprint function a Click calling action for example: ... elements to print

[jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!!!!!

2010-02-24 Thread Erik
http://www.dillerdesign.com/experiment/DD_roundies/ On Feb 23, 3:09 pm, "Cesar Sanz" wrote: > What are roundies? > > > > - Original Message - > From: "Erik" > To: "jQuery (English)" > Sent: Tuesday, February 23, 2010 10:50 AM >

Re: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!!!!!

2010-02-23 Thread Cesar Sanz
What are roundies? - Original Message - From: "Erik" To: "jQuery (English)" Sent: Tuesday, February 23, 2010 10:50 AM Subject: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !! Use the ROUNDIES script for IE7, which is really easy. I personally don

[jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!!!!!

2010-02-23 Thread Erik
Use the ROUNDIES script for IE7, which is really easy. I personally don't care for IE8 so I convert IE8 to work like IE7 by placing the following tag under the :

Re: [jQuery] Re: Sortable list - even when list is changed

2010-02-23 Thread Peter Edwards
No problem, $(document).ready(function(){ }); and $(function(){ }); are the same - both will run whatever you have in them when the DOM is ready - the second is just a kind of shorthand for the (much easier to read) first. Docs: .ready() http://api.jquery.com/ready/ $(callback) http://api

[jQuery] Re: Sortable list - even when list is changed

2010-02-23 Thread rafald
Hi Peter, Indeed! It works ;-) THANKS! It was enough to remove line with >> $("#elements").sortable(); << So, what is the right place to put: $("#elements").sortable(); ? in my example: the first place was outside "$(document).ready(function()" the second place (where I added event) was inside "$

Re: [jQuery] Re: Sortable list - even when list is changed

2010-02-23 Thread Peter Edwards
In your example, you have two calls to $('#elements').sortable(). The second one has the update event added, but the first (the one which creates the sortable) doesn't. If you add the update handler to the first call, it works OK. on 23/02/2010 08:26 rafald said:: Hi , please check this: http

[jQuery] Re: Sortable list - even when list is changed

2010-02-23 Thread rafald
Hi , please check this: http://jsbin.com/oququ3/6/edit As you can see: - sortable list works - accordion works ...but: - POPUP 'update' does not come what could be wrong here? regards Rafal

[jQuery] Re: Sortable list - even when list is changed

2010-02-23 Thread rafald
Hi , please check this: http://jsbin.com/oququ3/6/edit As you can see: - sortable list works - accordion works ...but: - POPUP 'update' does not come what could be wrong here? regards Rafal

[jQuery] Re: Sortable list - even when list is changed

2010-02-23 Thread rafald
Hi , please check this: http://jsbin.com/oququ3/6/edit As you can see: - sortable list works - accordion works ...but: - POPUP 'update' does not come what could be wrong here? regards Rafal

[jQuery] Re: Sortable list - even when list is changed

2010-02-23 Thread rafald
Hi , please check this: http://jsbin.com/oququ3/6/edit As you can see: - sortable list works - accordion works ...but: - POPUP 'update' does not come what could be wrong here? regards Rafal

Re: [jQuery] Re: Sortable list - even when list is changed

2010-02-22 Thread Nathan Klatt
On Mon, Feb 22, 2010 at 11:10 AM, rafald wrote: > ok...I see on you page it works...I double checked my code. > ... > but the problem is I need accordion as well. If you update the jsbin page to how you think it should be (i.e., add the accordion) I'd be happy to look into what's wrong. :) Go to

[jQuery] Re: Can I use external domain with jQuery media plugin ?

2010-02-22 Thread Mike Alsup
> it is about jQuery media plugin (http://malsup.com/jquery/media/ > misc.html) > > Can I use > >   http://www.google.co.in";> > > This to load EXTERNAL DOMAIN html page in an iframe that media plugin > I create. Yes, this should work. The media plugin just creates an iframe for this content.

[jQuery] Re: Sortable list - even when list is changed

2010-02-22 Thread rafald
ok...I see on you page it works...I double checked my code. Here what happens WHEN I replace THIS: $(function(){ $("#elements").sortable(); $("#elements").disableSelection(); }); $(function() { $("#accordion").accordion(); }); $(document).ready(function(){ $('#elements').sortable({ update: func

[jQuery] Re: Sortable list - even when list is changed

2010-02-22 Thread rafald
On 22 Lut, 03:43, Nathan Klatt wrote: > Hi Rafal, > > In what way does it not work? I transcribed your code into jsbin and > it seems to be fine, though I don't have any roundbox styling being > applied: > > http://jsbin.com/oququ3/edit > > Nathan Hi I am not surpised you don't get it rounded ;-

[jQuery] Re: Scrolling Problem

2010-02-20 Thread macgyver47
Thanks Nathan, it works as expected ! Great help ! On 20 fév, 21:34, Nathan Klatt wrote: > On Sat, Feb 20, 2010 at 9:13 AM, macgyver47 wrote: > > div1 class="post" > >    div class="title" > > > > div10 id="post" > >   div class="title" > > I am trying: clicking on div#title belonging to di

[jQuery] Re: jQuery thickbox/form plugin Chrome/Safari compatibility issue?

2010-02-20 Thread jfornear
I figured it out. All I had to do was move this part to the very end of the page. // prepare the form when the DOM is ready $(document).ready(function() { // bind form using ajaxForm $('#msg_form').ajaxForm({ // target identifies the element(s) to update with the server response target: '#sender'

[jQuery] Re: Passing value from function

2010-02-18 Thread RobG
On Feb 18, 9:15 pm, Charlie22 wrote: > Hi all, > I have trouble passing value as selector value to other function. > > $(document).ready(function(){ >         var id = 'Test'; >         $('#Name').keyup(function(){ >                 id = '#Mobil'; If you want variables to be local to their encl

[jQuery] Re: jQuery AUTOCOMPLETE (by bassistance): submit on click

2010-02-18 Thread jjunior
That's brilliant! Thanks.

Re: [jQuery] Re: show input field base on selected option

2010-02-17 Thread Jonathan Vanherpe (T & T nv)
maybe something like this? $(function(){ $('#type').change(function(){ var selected = $(this).children().filter(':selected'); if(selected.val()=='parttime'){ $('#numOfHours').show(); }else{ $('#numOfHours').hide(); } }); }); This is untes

[jQuery] Re: show input field base on selected option

2010-02-17 Thread 123gotoandplay
solution: $('#type').change(function() { if($('#type :selected').val() === "parttime") { $('#numOfHours').show(); } else { $('#numOfHours').hide(); } })

[jQuery] Re: show input field base on selected option

2010-02-17 Thread 123gotoandplay
this is what i have now $('#numOfHours').hide(); $('#type').change(function() { if($('#type :selected').text() == "parttime") { $('#numOfHours').show(); } else { $('#numOfHours').hide(); } On Feb 17, 2:08 pm, 123gotoandplay wrote: > How do i show

[jQuery] Re: Jquery form plugin can't find resolution

2010-02-15 Thread Marty Jones
Instead of doing $(this).ajaxSubmit(options); try $('#formId').ajaxSubmit(options); where #formId is the id of the form you are submitting. On Feb 14, 8:58 am, NHARRY wrote: > I have a form that is loaded using .load it is then posted using the > jquery form plugin. But it won't post see code

[jQuery] Re: ajaxsubmit dosn´t send the response to the defined target

2010-02-15 Thread Piet
Yes the div with id "Preview" is available. If I use the standard .serialize and .load from jquery it works well but unfortunately .serialize does not handle file uploads. Peter On 12 Feb., 14:26, "Jonathan Vanherpe (T & T nv)" wrote: > And more importantly, does it have the same case? > > > >

[jQuery] Re: superfish: disable arrows in first list

2010-02-14 Thread DLee
Hi Dasher, That may make the arrows disappear, but the .sf-menu li element is still stretched out as if there was still an arrow there. On Dec 31 2009, 9:51 pm, Dasher wrote: > Hi Frank, > > In the "$(document).ready(function() {" area... > > Below the superfish ("$('ul.sf-menu').superfish({" ca

Re: [jQuery] Re: ajaxsubmit dosn´t send the respons e to the defined target

2010-02-12 Thread Jonathan Vanherpe (T & T nv)
And more importantly, does it have the same case? Marty Jones wrote: I know this may sound silly but do you have a div element with a id of 'Preview'? On Feb 12, 5:43 am, Piet wrote: Dear all, I´m using ajaxSubmit to send a form (incl. fileuploads) to my server. Everthings works well but the

[jQuery] Re: ajaxsubmit dosn´t send the response to the defined target

2010-02-12 Thread Marty Jones
I know this may sound silly but do you have a div element with a id of 'Preview'? On Feb 12, 5:43 am, Piet wrote: > Dear all, > > I´m using ajaxSubmit to send a form (incl. fileuploads) to my server. > Everthings works well but the response from the server will not > displayed in the defined targ

[jQuery] Re: problem refreshing an image in a dialog box

2010-02-11 Thread jdgamble555
Actually I just found that I have the same problem with text inside a if I put this in the open function with this div located in my dialog, $("#changethisdiv").html("it is changed at" + new Date().getTime()); It will work one time, then it will no longer change after each time it is opened..

[jQuery] Re: Problem with chronological order : jQuery code runs too late

2010-02-11 Thread Julien
> Solved. I dont' know exactly what was wrong (...) Oh, I found : the parameters to $.ajax() have to been included into json-like brackets ! $.ajax( { parameters } );

[jQuery] Re: Problem with chronological order : jQuery code runs too late

2010-02-11 Thread Julien
Solved. I dont' know exactly what was wrong, although it was most probably in the callback function. Maybe the carriage returns. But this works fine: $.ajax({ async: false, url: cart_doc, type: 'POST', data: {action: 'retrieve_opt', name: fieldName}, dataType: 'text', time

[jQuery] Re: Problem with chronological order : jQuery code runs too late

2010-02-11 Thread Julien
Thanks, Leonardo. This seems being the right answer. However, I fail at replacing the $.post() request by the more general $.ajax(). Can you see any error in the manner I'm doing the ajax request ? (The corresponding $.post() code in my first message works fine.) $.ajax( async: false, t

Re: [jQuery] Re: how to make this really beautifull pattern

2010-02-10 Thread Nathan Klatt
On Wed, Feb 10, 2010 at 8:56 AM, Jonathan Vanherpe (T & T nv) wrote: > How about you just look at the source code? > > http://www.altsoftware.com/alt_news_rotator.js > > There's comments and everything FTW!!!

Re: [jQuery] Re: how to make this really beautifull pattern

2010-02-10 Thread Jonathan Vanherpe (T & T nv)
hno wrote: hno wrote: HI I have seen this pattern in http://www.altsoftware.com/index.php . there are news menu in the left side . Please visit this site . The news will be change with a really beautiful pattern in every 5 seconds I think it has been written with jquery but I don't know how c

RE: [jQuery] Re: how to make this really beautifull pattern

2010-02-10 Thread Rick Faircloth
(English) Subject: [jQuery] Re: how to make this really beautifull pattern hno wrote: > HI > I have seen this pattern in http://www.altsoftware.com/index.php . > there are news menu in the left side . Please visit this site . The > news will be change with a really beautiful patter

[jQuery] Re: how to make this really beautifull pattern

2010-02-10 Thread hno
hno wrote: > HI > I have seen this pattern in http://www.altsoftware.com/index.php . > there are news menu in the left side . Please visit this site . The > news will be change with a really beautiful pattern in every 5 > seconds > > I think it has been written with jquery but I don't know how ca

[jQuery] Re: JQuery tablesorter problem

2010-02-09 Thread Nagaraju
Hi Aquaone I am using Version 2.0.3 On Feb 4, 11:20 pm, aquaone wrote: > Please provide the code you're using to invoke tablesorter. It's likely a > syntax error. > > On Thu, Feb 4, 2010 at 05:36, Nagaraju wrote: > > I am facing problem with jquery.tablesorter.js > > > It's working fine if I ha

[jQuery] Re: Problem with a simple dropdown menu: it keeps collapse??

2010-02-08 Thread 123gotoandplay
oh, and i am trying to use the hoverflow plugin. (http://www. 2meter3.de/code/hoverFlow/) but it assumes you are animating the current div/id I our case the trigger is another div. but this doesn't work $("#nav-container").hover(function(e) { $("#dropmenu"

[jQuery] Re: Problem with a simple dropdown menu: it keeps collapse??

2010-02-08 Thread 123gotoandplay
Hi Chris, Tx for thinking along / posting the code ;) I think i am almost there, but the menu doesn't stop when you quickly hover it continues to drop down and up. I tested with $("#nav-container").hover(function() { $("#dropmenu").stop().slideToggle("fast");

[jQuery] Re: Problem with a simple dropdown menu: it keeps collapse??

2010-02-07 Thread ccschmitz
While there are a few problems with your code, I think you could achieve your desired effect if you threw the ul#slidemenu and #dropmenu into a containing div and then apply the hover function to the container. Something like this: -- HTML -- M

[jQuery] Re: [Tooltip Plugin] Problem with tooltip and live event

2010-02-07 Thread Renatho
the error is the last comma in literal object: the correct is 6. effect: 'fade' 7.}); On 6 fev, 20:35, vengiss wrote: > Hi, I have a table in my site that shows a list of products I get from a DB, > each one has and image (thats loaded on a hidden div). I'd like to show on a > to

[jQuery] Re: [Tooltip Plugin] Problem with tooltip and live event

2010-02-07 Thread Renatho
Hi Vengiss, $('#preview_'+id_mercancia).tooltip({ tip: '#img_'+id_mercancia, effect: 'fade', }); The error is the last comma. Correct: $('#preview_'+id_mercancia).tooltip({ tip: '#img_'+id_mercancia, effect: 'fade', }); This error doesn't affect IE and Safari because they ar

[jQuery] Re: fade in first problem

2010-02-07 Thread rockblock
still no real answer? in the meantime I have tried some solutions, but none of them would work. Please help. thank you

[jQuery] Re: Vaga para Desenvolvedor Client-side no Rio Grande do Sul

2010-02-05 Thread Renatho
Thank you Leo, but I'm looking for a Brazilian, so the stakeholders will understand what is written. On 5 fev, 16:25, Leo Balter wrote: > Ok Renatho, maybe you don't know yet but most people in this group don't > speak this language. Even I understand every word you saying, you should > post this

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-02-05 Thread augur
OK got non-standard attributes. It forces one rule, that all non- standard attributes for an element must follow 'id' and 'label'. This is standardized in setting "var z=2", as it skips past the first attributes and finds the remaining. Though this is a lot of code for each level of elements; var

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-02-03 Thread augur
Slick, and super fast. Makes it so that I do not even want to move onto JSON ;-)... (JK, my engineers are forcing me too) Made some minor mods, these add a little time and still processes over 50K lines in about 6-8 seconds, and 100K right about 10 seconds. Now everything is its own html object re

[jQuery] Re: JSON + variable

2010-02-03 Thread weidc
Well, wow thats nice! Thanks for your answer. Really awesome, I get an answer! But I have to use dataType: 'jsonp'. If I use dataType: 'json' the alert doesn't work. Oh my god it was so simple and I was thinking about it a million hours, thank you a lot. On 3 Feb., 17:25, rnivash wrote: > Hi m

[jQuery] Re: Is there have any JQuery plugin that can sort 1A,2A,3A,... 10A, 11A, 12A, 13A, 14A?

2010-02-03 Thread Scott Sauyet
On Feb 2, 10:37 am, HenryRock wrote: > I facing a problem in sorting : > > 1A,2A,3A,... 10A, 11A, 12A, 13A, 14A > [ ... ] > May I know is there have any plugin that can sort the sample data > above to 1A until 14A? Note that it's not hard to do this in Javascript, though: var sorter = (funct

[jQuery] Re: JSON + variable

2010-02-03 Thread rnivash
Hi mueller, The response is look like a function call. /* yasearch( { "q": "uboot", "f": ["k"], "r": [["uboote"], ["uboot chat"], ["ubootpc spiel"], ["uboot simulation"], ["modell uboot"], ["uboot hamburg"], ["uboot museum"], ["atom-uboot"], ["uboot ping"], ["rc ub

Re: [jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-02-02 Thread Michael Geary
I don't know why Google Groups keeps inserting those semi-random blank lines in the code! Now I'm curious, so I'm trying something a bit different - let's see what happens.. function parseXml( xml ) { var html = []; html.push( '' ); $(xml).find('sites').$each( function( $site ) {

Re: [jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-02-02 Thread Michael Geary
Cool, it will be good to see your continued work. We may be among the last holdouts in this mailing list - but I figure since the thread started here we can carry on. BTW you may notice one bit of annoying repeated boilerplate in that last version. See how the callback functions for all the .each(

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-02-02 Thread augur
OK, so this is much better than a lesson in parsing XML. Showing the errors that I had made in my process, you have also shown sound jQuery which I was having a hard time picking up from the documentation. I tend to learn best by doing and getting feedback. Mike, thank you. I am going to keep this

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-02-02 Thread augur
That is really nice. 100K lines really fast no script time outs. I need to get back and study a little more. I was so terribly close, but missed some really basic principles.

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-02-02 Thread augur
I was headed in this direction I was trying to get to the function (i,parent),function(j,child) I had not quite figured that part out which is obvious. Let's see what this does. Thanks Chad

[jQuery] Re: jQuery Cycle: two cycles with different effect & one pager

2010-02-02 Thread Mike Alsup
$('#slideshow').cycle({ fx: 'fade,cover' }); On Feb 1, 8:14 pm, Florushj wrote: > I'm having some trouble adjusting jQuery Cycle to my wishes. Unfortunately > I'm no jQuery hero :-( > > This is what I want in short: > It's basically this > example:http://www.malsup.com/jquery/cycle/pager-do

Re: [jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-02-02 Thread Michael Geary
No worries on the XML vs. JSON. It's been interesting to watch your progress in refactoring the code. I hope it's useful for other people too. A few notes on the latest version... * Avoid using ALLCAPS or PARTIALcaps in a variable name. Many JavaScript programmers will think you intend such varia

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-02-02 Thread augur
Let's me have multiple children: function parseXml(xml) { $(xml).find('sites').each(function(){ var PARENTarr = jQuery.makeArray($(this).find('>element')); $(PARENTarr).each(function(i){ $("div").append(""+

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-02-02 Thread augur
This is better. The arrays are much more efficient, and I cut the code by more than half. I know, I know JSON, I will get there, this is teaching me way more though. I still would like to be able to determine my level of nesting abstractly, and also getting out non- standard attributes. BTW proces

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-02-02 Thread augur
This is better. The arrays are much more efficient, and I cut the code by more than half. I know, I know JSON, I will get there, this is teaching me way more though. I still would like to be able to determine my level of nesting abstractly, and also getting out non- standard attributes. function

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-02-02 Thread augur
OK this is some progress. Still want more abstraction where I can, though this is much improved. I also need to be able to get arrays of attributes abstractly. function parseXml(xml) { $(xml).find('sites').each(function(){ var PARENTarr = jQuery.makeArray($(this).

[jQuery] Re: Is there have any JQuery plugin that can sort 1A,2A,3A,... 10A, 11A, 12A, 13A, 14A?

2010-02-02 Thread JamaicaMan
See this link: http://db4free.blogspot.com/2006/06/sorting-of-numeric-values-mixed-with.html

[jQuery] Re: slide show contains 24bit pngs - using cleartype & bg -true - still getting black border on transition

2010-02-02 Thread rc cola
wrong place to post - sorry - using jquery cycle - On Feb 2, 9:45 am, rc cola wrote: > Any help would be greatly appreciated. I can send screen shot - site > is still in dev.

[jQuery] Re: jQuery 1.4 & LiveQuery

2010-02-02 Thread pastel.pro
A fix has been posted here : http://github.com/brandonaaron/livequery/issues/#issue/2 On 17 jan, 15:00, "pastel.pro" wrote: > I'm not using blockUI and livequery doesn't work well with jquery 1.4 > (with 1.3 it's perfect). > Livequery often work activates when I lunch firebug (strange...). So

Re: [jQuery] Re: Autocomplete plugin compatability with jQuery 1.4?

2010-02-01 Thread Jörn Zaefferer
I've replied on that here: http://forum.jquery.com/topic/1-8rc1-autocomplete-search-options So far I don't plan to update the standalone plugin, though if you can provide a patch for 1.4 compability, I'd push out another release. Jörn On Mon, Feb 1, 2010 at 3:32 PM, Anthony wrote: > Hi, > > Tha

[jQuery] Re: Autocomplete plugin compatability with jQuery 1.4?

2010-02-01 Thread Anthony
Hi, Thanks for your responses. Can I ask 1 follow up question... Bearing in mind this has now been integrated into jQuery UI 1.8rc1, is it safe to assume that there any no plans to make the old version 1.1 of the 'Autocomplete' plugin compatible with jQuery 1.4? The reason I ask is that it looks

[jQuery] Re: hiding and showing the DIV on mouse enter

2010-02-01 Thread Ben Campbell
Firstly, just a warning that this is a first post. I've had a look at the link, and it seems to be redirecting me back to the homepage, however, I would think that to produce the effect you want you should just be able to use find(). so the following should work: $(document).ready(function() { $(

Re: [jQuery] Re: Autocomplete plugin compatability with jQuery 1.4?

2010-01-31 Thread Richard D. Worth
Yes, and yes. On Sun, Jan 31, 2010 at 3:41 PM, Jose wrote: > On Fri, Jan 29, 2010 at 1:38 AM, Richard D. Worth > wrote: > > The latest version is jQuery UI Autocomplete, and it is compatible with > > jQuery 1.4. You can find it in jQuery UI 1.8rc1: > > > > http://blog.jqueryui.com/2010/01/jquer

Re: [jQuery] Re: Autocomplete plugin compatability with jQuery 1.4?

2010-01-31 Thread Jose
On Fri, Jan 29, 2010 at 1:38 AM, Richard D. Worth wrote: > The latest version is jQuery UI Autocomplete, and it is compatible with > jQuery 1.4. You can find it in jQuery UI 1.8rc1: > > http://blog.jqueryui.com/2010/01/jquery-ui-1-8rc1/ Is the UI autocomplete based on Jörn's autocomplete ? If see

[jQuery] Re: 1.4.1 bug? jwysiwyg uncaught exception

2010-01-30 Thread brian
My apologies. I meant to also say that I tried it using jquery-1.3.2 with the same bad result. So I have no clue where the trouble lies. On Sat, Jan 30, 2010 at 11:04 PM, brian wrote: > A little update to this. I tried a different approach, hiding the form > at the bottom of the page and appendin

[jQuery] Re: 1.4.1 bug? jwysiwyg uncaught exception

2010-01-30 Thread brian
A little update to this. I tried a different approach, hiding the form at the bottom of the page and appending it below a particular comment when a "reply" button is clicked. It seems that even just using append() will cause the same misbaheviour. That is, if I do not hide the form on page load, i

[jQuery] Re: Countdown timer needed

2010-01-30 Thread Roddie Grant
On 30/1/10 15:26, "Erik" wrote: > I am looking for countdown timer - Text based that I can format with > CSS. I use one from http://keith-wood.name/countdown.html. Apart from Keith's site, you can see how I use it at http://www.pickthebucket.org.uk/buckets/buckets_Vw.lasso The one thing to wat

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-01-29 Thread augur
this treats processes each order of element separately as a variable. If I can append these correctly. I think that this might be a slightly better process. It is at least treating things in a more object oriented manner. $(xml).find('sites').each(function(){ PARENT = $(this);

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-01-29 Thread augur
Now I am treating each order of elements separately as their own objects. This is much faster, if I can figure out how to append the results correctly. function parseXml(xml) { $(xml).find('sites').each(function(){ PARENT = $(this); var PAR

[jQuery] Re: Tabs not working... NEED HELP!!!

2010-01-29 Thread Erik
Thank you nathan!! You got yourself free skin care!!! Thank you. Erik On Jan 29, 3:03 pm, Nathan Klatt wrote: > On Fri, Jan 29, 2010 at 4:19 PM, Erik wrote: > >                var activeTab = $(this).find("a").attr("href"); //Find the > > rel > > Delete the find("a") bit and you're good. > >

[jQuery] Re: Tabs not working... NEED HELP!!!

2010-01-29 Thread Erik
Nathan, Thanks for your help. I'm really stumped!! Initially when it loads, it look s right, but when I click on the either tab, I loose the content. Erik On Jan 29, 2:26 pm, Nathan Klatt wrote: > On Fri, Jan 29, 2010 at 4:19 PM, Erik wrote: > >                var activeTab = $(this).find("

[jQuery] Re: Tabs not working... NEED HELP!!!

2010-01-29 Thread Erik
www.naturalskin.com/test.htm it's the right side panel... Erik On Jan 29, 2:26 pm, Nathan Klatt wrote: > On Fri, Jan 29, 2010 at 4:19 PM, Erik wrote: > >                var activeTab = $(this).find("a").attr("href"); //Find the > > rel > > attribute value to identify the active tab + conte

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-01-29 Thread augur
This gets the variables at the top level and gives me the correct count for each level. function parseXml(xml) { $(xml).find('sites').each(function(){ var PARENT = $(this).children($(this).attr('id')); var PARENTcount = PARE

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-01-29 Thread augur
Small Tweaks, less lines of code. Still no major breaks in breaking the nested model for XML parsing. Things that I am interested in are being able to determine levels of nesting abstractly, being able to determine attributes abstractly, being able to hold results in an Array, build the array, and

[jQuery] Re: AjaxSubmit - Form Plugin Serialize Submit Button Data

2010-01-29 Thread Adysone
Hum sorry, it does not work correctly... All submit fields are posted, impossible to know which one we click on... I'm working on it. On 29 jan, 11:08, Adysone wrote: > Hi, > > I found a way to do that, I was confronted at the same problem. > Juste comment the line 556 in jquery.form.js : > //

[jQuery] Re: AjaxSubmit - Form Plugin Serialize Submit Button Data

2010-01-29 Thread Adysone
Hi, I found a way to do that, I was confronted at the same problem. Juste comment the line 556 in jquery.form.js : // (t == 'submit' || t == 'image') && el.form && el.form.clk != el || It works for me. Enjoy ;-) PS : Excuse my English, I'm French. On 20 jan, 20:36, Jamie wrote: > Hi > > I hav

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-01-28 Thread augur
Mike, Thanks so much for taking the time for writing this tutorial. I see how this is effective. I attempted to do similar things with the XML however... The Data Objects for JSON are much more simplistic structurally, and a little obtuse for reading visually. As I mentioned this simply is a model

Re: [jQuery] Re: Autocomplete plugin compatability with jQuery 1.4?

2010-01-28 Thread Richard D. Worth
The latest version is jQuery UI Autocomplete, and it is compatible with jQuery 1.4. You can find it in jQuery UI 1.8rc1: http://blog.jqueryui.com/2010/01/jquery-ui-1-8rc1/ - Richard On Thu, Jan 28, 2010 at 6:44 PM, dirk.diggler wrote: > Anthony, > > The short answer would appear to be no, it's

[jQuery] Re: Autocomplete plugin compatability with jQuery 1.4?

2010-01-28 Thread dirk.diggler
Anthony, The short answer would appear to be no, it's not compatible. To be fair, I'm running a slightly tweaked version of the plugin, so its entirely possible the incompatibility is something I introduced. This seems unlikely, though, since Firebug never even hits the breakpoint I've set in the

Re: [jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-01-28 Thread Michael Geary
No offense, but that code is really frightening. Not your fault though. JSON is not only much faster than all this XML/DOM garbage, but it is *much* easier to understand and use too! If you're coding JavaScript, you need to know how to use ordinary JavaScript objects and arrays, yes? If you know

[jQuery] Re: Classis ASP integrating Async Treeview Plugin using getJSON. Stops working when using response.write [variable name] instead of simple JSON string

2010-01-28 Thread MorningZ
I'd try: Response.ContentType = "application/json" right before the first writing On Jan 28, 2:32 pm, Jason Knight wrote: > Hi all, > > I've loved using jQuery these past few months, but I'm really pulling > my hair our here. > > The following is the "endpoint" asp code that gets called to pop

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-01-28 Thread augur
Funny thing is, my lead engineer said the same thing... Mostly this was an experiment to gain a better understanding of DOM outside of HTML. This is about as exciting as a SAX parser when it comes to speed (<5sec in safari for 20K lines, slightly longer in FireFox, and noticeably longer in Chrome)

[jQuery] Re: background mouseover fade effect

2010-01-28 Thread 1.am.W1z4rd
I've looked at the color plugin, but was unsuccessful, but I will have to try again, I guess. And there is an image behind it, if there weren't then this would be easy, and I would have never asked. Thanks all. On Jan 17, 6:49 pm, MorningZ wrote: > For sure check out the "color.js" plugin (Goog

Re: [jQuery] Re: Help with Column Navigation plugin (list page by selecting a element with particular ID)

2010-01-28 Thread Asharudeen
Hi, Thanks for your reply. Please go this URL: http://code.google.com/p/jquery-column-navigation/ In this a sample html example will be present. If we use the jquery column navigation plugin, while reload the page by default 'HomePage' and 'Contents' will be listed in the page. If we click on th

  1   2   3   4   5   6   7   8   9   10   >