[jQuery] Re: Two Sliders on Page :: 1 closes when the other opens

2009-03-24 Thread Mohd.Tareq
Hi commarts, When you are writing script to open top right slider , at the same time you need to add script to close bottom slider in the same script. Hope you get it. Cheers. On Wed, Mar 25, 2009 at 1:35 AM, commarts wrote: > > Friends, > > I have two sliders on the page. One at the top right

[jQuery] [ajaxForm] Loading Dynamic Data Best Practices

2009-03-24 Thread Code Daemon
RIght now I have a page that has a search box that uses the autocomplete plugin. When the form is submitted using the ajaxForm plugin, the server sends back HTML code with jQuery mixed in. This seems to work alright in Firefox, but in IE the javascript goes unnoticed. The results are sometimes unp

[jQuery] Is anyone making a Canvas-photo jquery version/plugin (cool stuff)

2009-03-24 Thread sleepwalker
Hey, I just saw this cool project called Canvas-photo and I was wondering if anyone was working on a jquery version (plugin)? Thanks Daniel http://code.google.com/p/canvas-photo/ [code] http://www.ernestdelgado.com/public-tests/canvasphoto/demo/canvas.html [demo]

[jQuery] Free jQuery select elements cheat sheet

2009-03-24 Thread xiaohouzi79
I've just finished writing a jQuery cheat sheet which is available for free download in pdf format. I've have put hours of work in to gathering together information from different tutorials and other sources to write this document. It is organized around the jQuery API for easy reference. You c

[jQuery] Re: Regarding jQuery UI tabs()

2009-03-24 Thread Nikola
You might wan't to post this in the UI group.. http://groups.google.com/group/jquery-ui You could, also, just add / remove your own 'active' class pretty easily. On Mar 24, 10:32 pm, MorningZ wrote: > it's definitely possible, but would require going through the js and > theme css and changing

[jQuery] Re: ajax timeout question

2009-03-24 Thread Mathew
nice, i should have tired that i guess. still learning i got it woring just as i wanted thank you On Mar 24, 10:32 pm, "comslash.com" wrote: > Mathew, > > I believe you can set the value to null or 0 to not have the request > time out ... but you may want to implement something on error instead

[jQuery] Re: Cycle Plugin : [cycle] terminating; too few slides: 1

2009-03-24 Thread pedalpete
Yeah, but I've seen the same thing in my code, and it turned out I wasn't calling the 'foreach' properly. Look at the response you are getting from the server (I'm assuming ajax) or look for a tag not closed properly or something. Posting code or link is the only way we can help here. On Mar 24,

[jQuery] Re: Convert js to jquery

2009-03-24 Thread Richard D. Worth
$(function() { $(".search-options li").click(function() { $(this).addClass("selected").siblings().removeClass("selected"); return false; }); }); User ID mikode Search Contact by - Richard On Tue, Mar 24, 2009 at 12:40 PM, mdjamal w

[jQuery] Re: Cycle Plugin : [cycle] terminating; too few slides: 1

2009-03-24 Thread KathyW
If you could supply a link to the page so we could check the code it would help enormously. KathyW.

[jQuery] Re: ajax timeout question

2009-03-24 Thread comslash.com
Mathew, I believe you can set the value to null or 0 to not have the request time out ... but you may want to implement something on error instead of this to say attempt the search again x times then print msg server is busy or something along those lines. On Mar 24, 10:51 pm, Mathew wrote: >

[jQuery] Tabs and tables

2009-03-24 Thread Joe Tseng
Currently I am working on an entry form that I've realized has become too long and would like to break up using Tabs. My current form uses tables (yes I should use divs but I'm still used to tables) and I thought I could just put in child tables inside the divs used by Tabs. I've come to discover

[jQuery] ajax timeout question

2009-03-24 Thread Mathew
i am using jquery ajax to load search results of a page. and am having a hard time finding an answer to this question regarding my timeout time i have jquery set to timeout 5000 before doing the success functions. i have noticed on my less than reliable connection that sometimes it takes longer th

[jQuery] Re: jQuery Validation Plugin & ASP.NET

2009-03-24 Thread Mac
Hi You are not placing the # in front of the form id as jquery requires. I do that all the time!!! On Mar 24, 12:26 pm, Zach wrote: > I've tried to get this to work for the past 4 hours and I'm stuck. > > I've got a master page with the following scripts added. > >     >     > > this is the f

[jQuery] Re: How to prevent loading jquery twice

2009-03-24 Thread Andy789
Thanks, guys. After all, I gave up on jscript solution and added a switch adding jscript to the header on a php level On Mar 23, 11:44 pm, Peter Edwards wrote: > Are you using joomla to load jQuery? or are you wringin script tags in > some sort of template? > I came across > this:http://www.pac

[jQuery] Re: Regarding jQuery UI tabs()

2009-03-24 Thread MorningZ
it's definitely possible, but would require going through the js and theme css and changing the class name so why would this be important to do? On Mar 24, 9:21 pm, BigFisch wrote: > I was wondering if there was a way to rename the class when something > is "active". > > Is it possible to defi

[jQuery] Re: referring to an array with a specific name

2009-03-24 Thread Macsig
Sweet!!! thanks Steven that is exactly what I was talking about (sorry if I have been confusing on my former explanation). Have a good 1! On Mar 24, 7:01 pm, Steven Yang wrote: > i think what macsig means is > his arrays are like > > var a =[array a] > var b = [array b] > > if thats the case >

[jQuery] Re: jquery, ajax success but wont load htl() ???

2009-03-24 Thread Mathew
ahhh, i moved the script to the top and made id (document).ready and although it still shows in the response but at the top i am getting results. thanks a bunch! i need to clean it up alot but as long as i am getting results on screen im good. hey man thanks for your time and consideration g

[jQuery] Re: jquery, ajax success but wont load htl() ???

2009-03-24 Thread James
I've noticed in your AJAX response (view via Firebug), you have a whole load of other stuff at the bottom of the response. If you're inserting into a table, your response should begin with , and end with . But you have a whole load of other things like tags. This would make invalid HTML and would

[jQuery] Re: referring to an array with a specific name

2009-03-24 Thread Steven Yang
i think what macsig means is his arrays are like var a =[array a] var b = [array b] if thats the case you might want to do var arrays = { 'a' : [array a], 'b' : [array b] } then when select changes and you get the value you can get your array with var myArray = arrays[val];

[jQuery] Re: jquery, ajax success but wont load htl() ???

2009-03-24 Thread Mathew
yeah i was needing to do that was just putting it off until i got the response through, thanks. but still no luck. arggg it did work at one point im not sure what to say this is an odd problem On Mar 24, 8:44 pm, James wrote: > Try changing: > > to: > > > and use: > jQuery("#searchresults").

[jQuery] Re: referring to an array with a specific name

2009-03-24 Thread James
How does your array look like? Do you mean like: var selected_value = $("#dropdown").val(); var myVar = myArray[selected_value]; ??? On Mar 24, 3:30 pm, macsig wrote: > Hello guys, > > I have a drop-down menu with 2 values ("a" and "b") and I have on my > script 2 arrays ("a" and "b"). > > Is

[jQuery] Re: jquery, ajax success but wont load htl() ???

2009-03-24 Thread James
Try changing: to: and use: jQuery("#searchresults").append(r); See what happens. On Mar 24, 3:33 pm, Mathew wrote: > yes whetehr slideup/down is there is the same issue. the page is up at > ->  http://undergroundinnertainment.com/2009/index.php?option=com_usersea... > thank you for your time

[jQuery] Re: jquery, ajax success but wont load htl() ???

2009-03-24 Thread Mathew
yes whetehr slideup/down is there is the same issue. the page is up at -> http://undergroundinnertainment.com/2009/index.php?option=com_usersearch&Itemid=75 thank you for your time also. the response i get for example of a search is: pracycepaulsboro, nj | Is located: 7.78 From: 19146 | Artis

[jQuery] referring to an array with a specific name

2009-03-24 Thread macsig
Hello guys, I have a drop-down menu with 2 values ("a" and "b") and I have on my script 2 arrays ("a" and "b"). Is there a way to select an array according to the drop-down value. I mean if I store in a variable the selected value var selected_value = $("#dropdown").val(); is there a way to re

[jQuery] Re: scrollto and jumping

2009-03-24 Thread James
Add a 'return false;' to the callback function for your click event. This tells it not to perform the default action of clicking the link. On Mar 24, 3:27 pm, kevinm wrote: > I have a vertical scrolliing area and inside the first area I have an > link that when clicked calls scrollto to scroll

[jQuery] scrollto and jumping

2009-03-24 Thread kevinm
I have a vertical scrolliing area and inside the first area I have an link that when clicked calls scrollto to scroll the main vertical area. What is happening is that the link is jumping to the link, then it scrolls. Any thoughts Thanks Kevin

[jQuery] Re: jquery, ajax success but wont load htl() ???

2009-03-24 Thread James
When debugging, try to remove the slideUp and slideDown stuff. What does the HTML for the AJAX response look like? If possible, could you set up a online demo page demonstrating the issue? On Mar 24, 3:21 pm, Mathew wrote: > yeah i need to get in the habit of chaining more thanks. i tried your

[jQuery] Re: Multiple data, JSON and AJAX

2009-03-24 Thread Steven Yang
I think you have to use .each and loop through all the divs and gather the information and then send the information once at the end with $.ajaxor otherwise you might end up with one $.ajax call for each div

[jQuery] Regarding jQuery UI tabs()

2009-03-24 Thread BigFisch
I was wondering if there was a way to rename the class when something is "active". Is it possible to define this in a parameter? Instead of "ui-state-active", I'd like it to use "active"

[jQuery] Re: jquery, ajax success but wont load htl() ???

2009-03-24 Thread Mathew
yeah i need to get in the habit of chaining more thanks. i tried your way but nothing. r contains my response but for some reason it will not load into that div i am completely clueless as to why it would nto load into the div i have no idea anyone help thanks On Mar 24, 7:42 pm, James wrote:

[jQuery] Re: jQuery.preload - Getting Link Mode To Work

2009-03-24 Thread James
Try replacing this line: var $links = $('#artistsColumns a').attr('rel'); with: var $links = []; $.each($('#artistsColumns a'), function() { $links.push( $(this).attr('rel') ); }); $('#artistsColumns a').attr('rel'); only gives you one string value, thus it will only preload one url. I made

[jQuery] Re: Can I use ajax to force a download dialog window?

2009-03-24 Thread James
Here's the simple general idea (untested): var count = 10; var timer = null; function countdown() { if (count >= 0) { count--; $("#time").text(count); // update count } else { window.clearInterval(timer); // stop the timer location.href =

[jQuery] Re: jquery, ajax success but wont load htl() ???

2009-03-24 Thread James
Have you tried: jQuery("#searchresults").slideUp(function() { jQuery("#searchresults").html(r).slideDown(); }); Also for form elements, instead of doing: var name = jQuery("#search").attr('value') You can simply do: var name = jQuery("#search").val(); On Mar 24, 2:33 pm, Mathew wrote: >

[jQuery] Re: Dynamic update div tag; javascript fails for complex data

2009-03-24 Thread James
What do you mean by "dynamically updated"? Could you show an example of how and where it's dynamically updating the variable content? On Mar 24, 2:12 pm, Ramyak wrote: > But $data is dynamically updated, so I was wondering if there is any > function that escapes the special characters on the fly

[jQuery] Re: observe_field

2009-03-24 Thread Macsig
Thanks buddy On Mar 24, 4:35 pm, Karl Rudd wrote: > Sure. Bind a "change" handler to the select. > Seehttp://docs.jquery.com/Attributes/valfor more details. > > Karl Rudd > > On Wed, Mar 25, 2009 at 9:35 AM, macsig wrote: > > > Hi guys, > > Is there any way to achieve with jQuery the same goal

[jQuery] jquery, ajax success but wont load htl() ???

2009-03-24 Thread Mathew
i had this working at one point but was still cleaning up the php. and now it wont load my entries at all using html() i see the response from success in firebug console and if i use text() it loads the html code in the div i assign but when using html() to render results it does not load anything

[jQuery] Re: Cycle Plugin : [cycle] terminating; too few slides: 1

2009-03-24 Thread Asinox
i forget...this problem is just in Firefox 3.0.7 On Mar 24, 7:16 pm, pedalpete wrote: > The message means that there isn't enough data in the cycle for it to > cycle through. > Likely you are only loading your cycle wrapper once, but you didn't > include any code or a url, so it's tough to tell.

[jQuery] Can I use ajax to force a download dialog window?

2009-03-24 Thread Joel Taylor
You know those sites that have the "Your download will begin in 10 seconds" - and then it brings up a download window? How could you do that with jQuery - I've been trying several methods with the ajax functions and php headers Any ideas out there? Joel

[jQuery] Re: Cycle Plugin : [cycle] terminating; too few slides: 1

2009-03-24 Thread Asinox
Hi, but im doing... i have a foreach with php for load the images, in the home pages i got the message, but in the another part to the website is fine... On Mar 24, 7:16 pm, pedalpete wrote: > The message means that there isn't enough data in the cycle for it to > cycle through. > Likely you a

[jQuery] Re: Dynamic update div tag; javascript fails for complex data

2009-03-24 Thread Ramyak
But $data is dynamically updated, so I was wondering if there is any function that escapes the special characters on the fly. Thanks, Ramya On Mar 24, 4:51 pm, James wrote: > This is basic programming... > > If your string is wrapped in single-quotes, and the content of your > string contains s

[jQuery] Re: updating content (adding new items)

2009-03-24 Thread James
Just get the HTML and prepend it. $.get("last-10-twitts.php", function(data) { $("#twitts").prepend(data); }); On Mar 24, 5:11 am, introvert wrote: > Hello. > > I have a simple twitter shoutbox on my website that I would like to > refresh with jquery each X seconds. > > At the moment I us

[jQuery] Re: Dynamic update div tag; javascript fails for complex data

2009-03-24 Thread James
This is basic programming... If your string is wrapped in single-quotes, and the content of your string contains single-quotes, you have to escape them: $data = 'Hey welcome to webpage, \'Enjoy\''; or you can use double-quotes to wrap the string: $data = "Hey welcome to webpage, 'Enjoy'"; On Ma

[jQuery] Re: .load of content does not always include DB connection

2009-03-24 Thread James
This sounds more like a server-side issue. Are you running into high load issues on your database, or some kind of connection limit? Every AJAX request is just a single request and are completely separate of each request and the page that it's called from. Do you have some kind of demo page that w

[jQuery] Position Div over Quicktime Movie

2009-03-24 Thread Nic Hubbard
Does anyone know of any jQuery/javascript trickery that can help with positioning a div over a quicktime movie? So far, I found found that it is not possible. But, it seems that there has to be some way to do this! Has anyone done this before?

[jQuery] Re: observe_field

2009-03-24 Thread Karl Rudd
Sure. Bind a "change" handler to the select. See http://docs.jquery.com/Attributes/val for more details. Karl Rudd On Wed, Mar 25, 2009 at 9:35 AM, macsig wrote: > > Hi guys, > Is there any way to achieve with jQuery the same goal of prototype > helper "observe_field". > > I have a drop down me

[jQuery] Re: Deepest apologies....

2009-03-24 Thread donb
If you click 'More Options', there's a 'Remove' option to clean out the unwanted copies. On Mar 24, 5:59 pm, iskills wrote: > Hey everyone - so sorry for the multiple "Ticket Messages" there - I > set my Google Group settings to single emails - and the email on this > account goes to our help ti

[jQuery] Re: jQuery.preload - Getting Link Mode To Work

2009-03-24 Thread Nic Hubbard
Anyone? On Mar 23, 2:08 pm, Nic Hubbard wrote: > I seem to be having issues with getting link mode to work with Ariel > Flesler's preload plugin.  I have a hidden menu, which shows a hidden > div when you mouse over a nav item.  This then shows a list of names, > and I am using the preload plugi

[jQuery] Re: Cycle Plugin : [cycle] terminating; too few slides: 1

2009-03-24 Thread pedalpete
The message means that there isn't enough data in the cycle for it to cycle through. Likely you are only loading your cycle wrapper once, but you didn't include any code or a url, so it's tough to tell.

[jQuery] Cycle Plugin : [cycle] terminating; too few slides: 1

2009-03-24 Thread Asinox
Hi, Cycle Plugin is great!!, but i have a problem, in my home pages firebug say: [cycle] terminating; too few slides: 1 but in another sections of my website Cycle Plugin work great!!. The images, im loading from database with a while Anybody know about this msg? thanks

[jQuery] .load of content does not always include DB connection

2009-03-24 Thread Tim
I have a website where I pull a lot of different pages into one CMS page. The problem is the loaded page will occasionaly say "No database selected". But if I click the link and load the page again the content will show correctly. Is there a way to check if connection has been made or a way to de

[jQuery] Re: Ticket: [1758-5724031711]

2009-03-24 Thread John Resig
Ah, missed that, thanks. --John On Tue, Mar 24, 2009 at 6:34 PM, Matt Quackenbush wrote: > John, > > I'm not the "offender", but he did apologize and explain. > > http://groups.google.com/group/jquery-en/browse_thread/thread/c661f1f17c5d374b > > HTH > > > On Tue, Mar 24, 2009 at 5:28 PM, John

[jQuery] Re: Keeping jquery codes up to date - best practise?

2009-03-24 Thread Microbe
I love this place. Thanks so much everyone. My coding practises just shifted :) Steve On Mar 25, 5:55 am, MorningZ wrote: > To build on James reply > > Using more CDNs allow your user's browser to download more > simultaneously > > http://developer.yahoo.com/performance/rules.html#cdn > > On

[jQuery] Re: Cycle plugin questions

2009-03-24 Thread KathyW
On Mar 25, 5:26 am, Carl Meyer wrote: > Using the (awesome) Cycle plugin all over the place, and I have a > question: in the uncompressed code file [1], a comment says that the > second argument to .cycle() can be "the name of an fx (only used in > conjunction with a numeric value for 'options'

[jQuery] Contact Form Validation with Savvy and PHP

2009-03-24 Thread clee109
I cannot get this to work for the life of me. The validation works, if you a user fails to enter in a required field it alerts them to that. However; when a user submits a complete form it send it to my email properly but does not display the success text? Is it my PHP or jQuery that's wrong?

[jQuery] Re: creating search page with "click" for more results.

2009-03-24 Thread James
The issue is that once you bind a click handler on existing elements, it will not take effect on elements added in the future. You can re- bind it again once you added the new content, or you can use jQuery's live() function in place of click() to have elements added in the future to also have the

[jQuery] Re: [autocomplete] jquery + dwr

2009-03-24 Thread Jörn Zaefferer
The jQuery UI branch of the autocomplete plugin supports a source-option as an alternative to the url- und data-options. Give it a try and let us know if it works for you: http://jquery-ui.googlecode.com/svn/branches/dev/autocomplete/ http://jqueryui.pbwiki.com/SelectComboboxAutocomplete Jörn On

[jQuery] observe_field

2009-03-24 Thread macsig
Hi guys, Is there any way to achieve with jQuery the same goal of prototype helper "observe_field". I have a drop down menu and I wish to change some text according to the selected value. Thanks

[jQuery] Re: jQuery validation and captcha

2009-03-24 Thread Jörn Zaefferer
Custom method must return a result instantly, and don't support callbacks as required for Ajax calls. For that, use the remote method: http://docs.jquery.com/Plugins/Validation/Methods/remote#url Jörn On Tue, Mar 24, 2009 at 3:26 PM, Mr J wrote: > > dear all, > > i'm working with jQuery validati

[jQuery] Re: Ticket: [1758-5724031711]

2009-03-24 Thread Matt Quackenbush
John, I'm not the "offender", but he did apologize and explain. http://groups.google.com/group/jquery-en/browse_thread/thread/c661f1f17c5d374b HTH On Tue, Mar 24, 2009 at 5:28 PM, John Resig wrote: > > Uhhh... why were there like 30 of these submitted to the mailing list? > Your email address

[jQuery] Re: Ticket: [1758-5724031711]

2009-03-24 Thread John Resig
Uhhh... why were there like 30 of these submitted to the mailing list? Your email address has now been banned. Please contact me off-list if you wish to rectify the situation. --John On Tue, Mar 24, 2009 at 5:45 PM, InfiniteSkills Support Center wrote: > > This message is to notify you that y

[jQuery] Re: Superfish Not working

2009-03-24 Thread James
Using FF3, I see white lettering for your menu. In only FF3 (didn't happen in IE6), the menu doesn't seem to be expanding downwards as expected. It gets cut off about 10px down. I tried setting the moduletable class 'overflow' to 'auto' and that fixed it. It's currently set to 'hidden' right now.

[jQuery] Re: Cycle plugin questions

2009-03-24 Thread Mike Alsup
> Using the (awesome) Cycle plugin all over the place, and I have a > question: in the uncompressed code file [1], a comment says that the > second argument to .cycle() can be "the name of an fx (only used in > conjunction with a numeric value for 'options')".  I've tried this (to > trigger a manu

[jQuery] [autocomplete] jquery + dwr

2009-03-24 Thread Diego Plentz
Hey guys, I'm using jquery + autocomplete plugin (by Jörn) and I trying to make it work with DWR(http://directwebremoting.org/). My problem is that jquery autocomplete takes a url or data directly, but to make DWR works properly, I must use their javascript functions and handle the callback. Here

[jQuery] Deepest apologies....

2009-03-24 Thread iskills
Hey everyone - so sorry for the multiple "Ticket Messages" there - I set my Google Group settings to single emails - and the email on this account goes to our help ticket system. Turned off emails from the group now - no more ticket Spam! *ashamed*

[jQuery] Ticket: [1758-5724031711]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1758-5724031711 Message: -- Add the {async:false} option to your $.get. This tells JavaScript to wait for the response before continuing with the rest of the script. By default, AJAX is

[jQuery] Ticket: [1754-3524031711]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1754-3524031711 Message: -- OK - let me please preface this by the fact that I am now 12 hours into jQuery, with a pretty basic Javascript understanding, and years of PHP work. I could

[jQuery] Ticket: [1757-5724031713]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1757-5724031713 Message: -- Friends, I have two sliders on the page. One at the top right, and one at the bottom right. I would like for them to work together. When one slider opens th

[jQuery] Ticket: [1749-6724031752]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1749-6724031752 Message: -- Hello, I have a 3-level menu using Superfish. I would like to hover over the top-level menu item and have BOTH the 2nd and 3rd-level menus open automaticall

[jQuery] Ticket: [1753-3824031710]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1753-3824031710 Message: -- OK, this is what I have. Multiple lists that I can collapse and expand. What I want is for them to only show x amount of items until I expand them. Say x

[jQuery] Ticket: [1755-7024031711]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1755-7024031711 Message: -- I am kinda confused, and stranded. If i create dragables with clones and drag them into a connected sortable i can't find a way to get/interact with the obj

[jQuery] Ticket: [1752-2524031710]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1752-2524031710 Message: -- dear all, i'm working with jQuery validation to validate the fields in a form. in this form i have also the captcha (the check is verified through ajax). ch

[jQuery] Ticket: [1750-2224031709]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1750-2224031709 Message: -- I'm just getting to know jQuery. The basic tutorial (http:// docs.jquery.com/Tutorials:How_jQuery_Works ) fails to mention that $ is used as a shortcut for

[jQuery] Ticket: [1751-7724031710]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1751-7724031710 Message: -- dear all, i'm trying to implement the captcha in a form where i'm using jquery validation and also custom validation methods. this is the code i have so far:

[jQuery] Ticket: [1756-5324031713]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1756-5324031713 Message: -- Hi, I am new to jQuery, and it seems the very first thing I try to do gives me problems. However, probably I am missing something so let me ask you if you ca

[jQuery] Ticket: [1747-5424031751]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1747-5424031751 Message: -- hello, first off, amazing! thank you for your great work. most every part is working for me, including using background images. when the mouse hovers, the

[jQuery] Ticket: [1746-5224031743]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1746-5224031743 Message: -- Friends, I have two sliders on the page. One at the top right, and one at the bottom right. I would like for them to work together. When one slider opens t

[jQuery] Ticket: [1748-7424031751]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1748-7424031751 Message: -- I have the following code: $('#r_0_0').blur(function() { var x = $('#r_0_0').val(); var y="#d_0"; $(y).empty(); $.get("apps/P5001/call/LineItems.las

[jQuery] Ticket: [1743-5624031723]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1743-5624031723 Message: -- I have a 3-level menu using JQuery-Superfish. I would like to hover over the top-level menu item and have BOTH the 2nd and 3rd-level menus open automatically

[jQuery] Ticket: [1745-7924031743]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1745-7924031743 Message: -- I am using Epic as my template and can not get superfish to work. It keeps pulling a Dark Blue lettering for the menu items and some of them are white. I ne

[jQuery] Ticket: [1744-2724031742]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1744-2724031742 Message: -- Hello all jQuery people. This is my first post in this list but I hope I can make sense with my question. Currently I'm developing some web applications for

[jQuery] Ticket: [1741-5224031715]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1741-5224031715 Message: -- Hi all - I cannot seem to get this success piece to work, the script will go through and validate each field of my contact form and prompt the user to enter

[jQuery] Ticket: [1742-3924031723]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1742-3924031723 Message: -- Hey all, Using the (awesome) Cycle plugin all over the place, and I have a question: in the uncompressed code file [1], a comment says that the second argum

[jQuery] Ticket: [1739-8724031714]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1739-8724031714 Message: -- Friends, I have two sliders on the page. One at the top right, and one at the bottom right. I would like for them to work together. When one slider opens th

[jQuery] Ticket: [1740-3424031715]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1740-3424031715 Message: -- jQuery (English) jQuery is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, and add Aj

[jQuery] Ticket: [1738-1124031702]

2009-03-24 Thread InfiniteSkills Support Center
This message is to notify you that your ticket has been submitted. Ticket ID: 1738-1124031702 Message: -- Hello, Need help. I want to dynamically update the contents of my div tag. Therefore I used jquery and the code is as follows $data= 'welcome to this pag

[jQuery] Re: Delay function to wait for post

2009-03-24 Thread James
Add the {async:false} option to your $.get. This tells JavaScript to wait for the response before continuing with the rest of the script. By default, AJAX is asynchronous. On Mar 24, 4:13 am, aeg1s wrote: > I have the following code: > > $('#r_0_0').blur(function() { > >  var x = $('#r_0_0').val

[jQuery] Two Sliders on Page :: 1 closes when the other opens

2009-03-24 Thread commarts
Friends, I have two sliders on the page. One at the top right, and one at the bottom right. I would like for them to work together. When one slider opens the other one closes. Daniel

[jQuery] dragable + sortable: modify cloned dragables on drop

2009-03-24 Thread omgy
I am kinda confused, and stranded. If i create dragables with clones and drag them into a connected sortable i can't find a way to get/interact with the objects clone. dragable: stop: function(event, ui) { ...} nothing in "ui" points at the clone.. sortable however doesn't seem to offer a

[jQuery] Wrapping p siblings following h1 in divs

2009-03-24 Thread Claes
Hi, I am new to jQuery, and it seems the very first thing I try to do gives me problems. However, probably I am missing something so let me ask you if you can hint me on the best way to accomplish this. I want to transform a document with a flat structure like this Heading 1 Paragraph 1.1 Paragr

[jQuery] Delay function to wait for post

2009-03-24 Thread aeg1s
I have the following code: $('#r_0_0').blur(function() { var x = $('#r_0_0').val(); var y="#d_0"; $(y).empty(); $.get("apps/P5001/call/LineItems.lasso?LITM=" + x + "&Line=" + 'r_0_0' + "&TEST=" + y,function(data2){ $(y).empty(); $(y).append(data2); },"html"); $('#addnew').click()

[jQuery] jQuery Tutorial

2009-03-24 Thread starshine531
I'm just getting to know jQuery. The basic tutorial (http:// docs.jquery.com/Tutorials:How_jQuery_Works ) fails to mention that $ is used as a shortcut for jQuery. Things would have made much more sense the first time I read through it if this had been mentioned. I'm used to $ preceding a varia

[jQuery] Superfish: automatically expand 3rd-level menu?

2009-03-24 Thread Jon-Visionmark
Hello, I have a 3-level menu using Superfish. I would like to hover over the top-level menu item and have BOTH the 2nd and 3rd-level menus open automatically. Any ideas? Thanks in advance! Jon

[jQuery] jQuery validation and captcha in a form

2009-03-24 Thread Mr J
dear all, i'm trying to implement the captcha in a form where i'm using jquery validation and also custom validation methods. this is the code i have so far: jQuery.validator.addMethod("Captcha", Function(value, element) { jQuery.get("/functions/app/CaptchaAjax/captcha.asp? validateCap

[jQuery] jQuery validation and captcha

2009-03-24 Thread Mr J
dear all, i'm working with jQuery validation to validate the fields in a form. in this form i have also the captcha (the check is verified through ajax). check the code below: jQuery.validator.addMethod("Captcha", function(value, element) { jQuery.get("/captcha.asp?validateCaptchaCode=" + jQuer

[jQuery] Multiple lists that should only show x amount of items until you expand them

2009-03-24 Thread Jens Bengtsson
OK, this is what I have. Multiple lists that I can collapse and expand. What I want is for them to only show x amount of items until I expand them. Say x = 2 In Section A the following would be shown Link A-A Link A-B In Section B the following would be shown Link B-A Link B-B etc. And when

[jQuery] Superfish: automatically expand 3rd-level menu?

2009-03-24 Thread Jon-Visionmark
I have a 3-level menu using JQuery-Superfish. I would like to hover over the top-level menu item and have BOTH the 2nd and 3rd-level menus open automatically. Any ideas?

[jQuery] Cross-browser inline style injection in DOM

2009-03-24 Thread xPheRe
Hello all jQuery people. This is my first post in this list but I hope I can make sense with my question. Currently I'm developing some web applications for internal use, porting some old ones. I'd love the jQuery-way to do asynchronous requests, so I developed a plugin similar to Pimentech jFram

[jQuery] creating search page with "click" for more results.

2009-03-24 Thread iskills
OK - let me please preface this by the fact that I am now 12 hours into jQuery, with a pretty basic Javascript understanding, and years of PHP work. I could not find the answer to my questions, mostly because I don't exactly know how to frame them! I am creating a search with expandable results.

[jQuery] superfish bg images - almost there!

2009-03-24 Thread durill
hello, first off, amazing! thank you for your great work. most every part is working for me, including using background images. when the mouse hovers, the background image changes as does the text color. perfect. currently, i only have the superfish menu on the "Discounts" link so that is the li

[jQuery] 2 Sliders working together.

2009-03-24 Thread Commarts
Friends, I have two sliders on the page. One at the top right, and one at the bottom right. I would like for them to work together. When one slider opens the other one closes. http://sucro.se/red7e/BE/ Any ideas? Daniel -- View this message in context: http://www.nabble.com/2-Sliders-worki

  1   2   >