[jQuery] need help in adding preloader using jquery

2010-02-09 Thread doforumda
hi i need help in adding preloader using jquery. in the following code i want to add preloader when user clicks on Tab One and also when user enter its username and password and after pressing submit button there i want to add preloader. i have a loader.gif image so please help me how and where ca

Re: [jQuery] need help with simple jQuery problem

2010-01-22 Thread Adriana P
Hi Rory, I will try to give you a detailed explanation. The file expand.js contains two scripts: the expandAll() plug-in and the small toggler() plug-in. 1.) expandAll() - generates the switch 'Expand All/Collapse All' (or, in your case, 'go ahead.../ ...go back'); - when the 'switch' is cli

Re: [jQuery] need help with simple jQuery problem

2010-01-20 Thread Adriana P
Hi Rory, You need only the expandAll() plug-in: $(function() { $("#outer").expandAll({trigger: "span.expand", ref: "div.demo", showMethod: "slideDown", hideMethod: "slideUp", speed: 600}); }); Regards, Adriana Rory Bernstein wrote: > > Hello, > > I am a total jQuery novice, and I tried

Re: [jQuery] need help with simple jQuery problem

2010-01-19 Thread parot
Hi Rory Like you a jQuery novice, but think I can help. Though I agree there seems to be a lot of code in here/there that is not needed - plus would not validate against W3C standards e.g. take out the after the and replace your / 's with / . Anyhow here goes - and I have no dobut it ca

Re: [jQuery] need help with simple jQuery problem

2010-01-19 Thread Nathan Klatt
That seems like a lot of code for something so simple. Why don't you just follow the example from the docs: http://docs.jquery.com/Effects/slideToggle#speedcallback ? Nathan

[jQuery] need help with simple jQuery problem

2010-01-19 Thread Rory Bernstein
Hello, I am a total jQuery novice, and I tried to use jQuery for a project but I'm having trouble. http://www.rorybernstein.com/stage/index2.html When you click the blue "go ahead" link, it expands the hidden div, revealing content. I want the effect to be a "slide" effect, as on this sample pag

[jQuery] Need help with a required field from radio selection

2010-01-11 Thread jeffself
I've got a form with a radio group called 'legal_status'. There are five radio buttons. The last one has an id='other_radio'. If this button is selected, I have a textarea field that gets displayed. The field has an id='legal_status_comment'. This textarea field is wrapped by a div with an id='othe

[jQuery] Need help with a simple problem?

2010-01-07 Thread Dennis J
I am a total newbie when it comes down to Jquery, still in the learning process. $(document).ready(function(){ $('#top-bar-login li.current').hover( function() { $("#top-bar-login ul").css('display', 'block'); }, function()

[jQuery] Need help learning

2010-01-06 Thread Inquisitive
I have been reading and playing around with jQuery and can do somethings, but making a plugin is hurting my brain. Here is what I have. (function($) { $.fn.myPlugin = function() { this.each(function() { alert(this.id) $.get("

[jQuery] need help using jquery form to delete records in DB

2009-12-21 Thread shovi
Hi there, I'm using the jQuery form plugin here: http://malsup.com/jquery/form/ and have it successfully updating records in a DB without refreshing the page. each record is shown as its own FORM with a "Save Changes" button (compared to updating all the records at once). however, the problem I'

[jQuery] Need help with image slideshow effect

2009-12-18 Thread dec0y
I'm trying to do a simple image slideshow similar to what you see here: http://www.okadirect.com/ When the image changes, I want there to be that sort of "flash" effect that fades out to reveal the image. Looking around on the jquery website, I found this http://docs.jquery.com/UI/Effects/Highlig

[jQuery] Need help with image slideshow effect

2009-12-18 Thread dec0y
I'm trying to do a simple image slideshow similar to what you see here: http://www.okadirect.com/ When the image changes, I want there to be that sort of "flash" effect that fades out to reveal the image. Looking around on the jquery website, I found this http://docs.jquery.com/UI/Effects/Highlig

Re: [jQuery] Need help converting conventional code to jquery

2009-12-14 Thread Leonardo K
function togglePassFail(radioName) { var buttonGrp = document.getElementsByName(radioName); var radioValue = $(buttonGrp).filter(':checked').val(); var detailDiv = $(buttonGrp).eq(0).parent().next(); if ( radioValue == 'p' ){ detailDiv.hide(); }else{ detailDiv.sh

[jQuery] Need help converting conventional code to jquery

2009-12-13 Thread Ibatex
Hi all, I'm new here and new to jquery in general. Question is how can I do the following in jquery, I'd like to have access to jqueries effects and animations. function togglePassFail(radioName) { var buttonGrp = document.getElementsByName(radioName); var radioValue; //

Re: [jQuery] Need help with superfish dropdown menu

2009-12-11 Thread Charlie
2 ways to approach the color use the onBeforeSHow option withing superfish constructor to add a class to your hovered tags, or add some li:hover >a rules to change in css you have to watch for the #navlinks a:link rules you have that will superseded the superfish rules. Usually easiest to wo

[jQuery] Need help with superfish dropdown menu

2009-12-11 Thread Yvan
I'm having some difficulty finalizing my suckerfish dropdown menu on this page (ie: "Resources" button / link): http://www.alliedcash.com/comparison/ Here are the 3 problems that I'm trying to correct: 1) I want to eliminate the right border for each of my sublinks -- I can't seem to access / ov

[jQuery] NEED HELP::siblings isssue in jquery

2009-12-10 Thread Bideshi
Hi there, i've a little issue related to siblings in jquery, i'm using sibling to deselect the previous selected link after clicking on the new link, but it's now working, please let me know where i'm missing. here is the HTML code: -

[jQuery] Need help finalizing superfish dropdown menu

2009-12-04 Thread Yvan
I'm having some difficulty finalizing my suckerfish dropdown menu on this page (ie: "Resources" button / link): http://www.alliedcash.com/comparison/ Here are the 3 problems that I'm trying to correct: 1) I want to eliminate the right border for each of my sublinks -- I can't seem to access / ov

[jQuery] Need help in jquery script for copying values

2009-12-03 Thread rose
Hi All, I have a below jquery function to search the employee data and show the result. i have a text box in which the user type in the empid and click on search. Once user clicks on search it shows the employee detail such as name, sex, race etc below the textbox. $('#addEmployee').click(function

Re: [jQuery] Need help in making AJAX call in IE8

2009-11-18 Thread Michel Belleville
$.post() won't work on a local file either. Local or distant you have to talk to a web server, tapping the local file system won't work, and that's a feature. Michel Belleville 2009/11/18 Denis Caggiano > When I need to use ajax in my applications I implement the $.post and > never had problem

Re: [jQuery] Need help in making AJAX call in IE8

2009-11-18 Thread Denis Caggiano
When I need to use ajax in my applications I implement the $.post and never had problems. Try to use this.

Re: [jQuery] Need help in making AJAX call in IE8

2009-11-18 Thread Michel Belleville
AJAX calls does not work with local documents, I'll let you guess why (hint : what if I decided to read what's in your local files using my webpage, then send it to a database of mine so I can log into your favorite forum, online game, internet order site, webmail, etc. just for the fun of it... or

[jQuery] Need help in making AJAX call in IE8

2009-11-18 Thread santosh chavan
HI All I am trying to load XML file using following code. $(document).ready(function() { $.ajax({ type: "GET", url: "D:\Documents and Settings\santosh.chavan\Desktop\ajaxJqueryXML \data.xml", dataType: "xml", success: functi

[jQuery] Need help with jQuery in Wordpress

2009-11-17 Thread zek
I've been putting the finishing touches on my blog-to-be, but I've got stuck on this thing and I need help! This is what I'm trying to create: When you click on a thumbnail on the bottom, the main image and the text are supposed to change. [IMG]http://i34.tinypic.com/i6xzxd.jpg[/IMG] Here's the s

Re: [jQuery] Need help using JQuery selectors

2009-11-03 Thread wesley.bunton
Sorry if I wasn't clear enough. Perhaps this will help, this is my full function that is not working. I don't think that I have any problems with syntax, because the basic version of this worked just fine, it would hide/reveal each div okay, but I want it to make it check and hide an visible div

Re: [jQuery] Need help using JQuery selectors

2009-11-03 Thread captaincarp
Hi Wesley, 1. you are only closing one of your IF statements (with a '}') 2. worth making sure you using display:none consistently and not visibility:hidden anywhere might help dunno?! wesley.bunton wrote: > > > if($(caller).css("display") == "none"){ > > > if($("

Re: [jQuery] Need help using JQuery selectors

2009-11-02 Thread Dhruva Sagar
Bracket's don't match in your javascript code. The *if($(caller).css("display") == "none") { *<-- bracket is not closed. Thanks & Regards, Dhruva Sagar. Samuel Goldwyn - "I'm willing to admit that I may not always be right, but I a

[jQuery] Need help using JQuery selectors

2009-11-02 Thread wesley.bunton
I am trying to use this jquery slide function that i found online. It's a very basic slide plugin i suppose, which selects a div using the div's id tag. I wanted to make my menu hide/reveal multiple divs and therefore I modified this function that I keep in my .js file to make things work theore

[jQuery] Need help creating updated Onion Skin Dropshadow

2009-10-29 Thread brucend75
I am trying to update the onion skin dropshadow technique for the latest version of WordPress using jQuery to insert the necessary div's. This is my first foray into jQuery, and I think I've got the feel of it, but am unsure. I really would appreciate it if someone with more experience could take

[jQuery] Need help for a small little Menue System

2009-10-29 Thread codeworxx
Hello Guys, first of all i want to say a "Hello" to all of you! I'm new to jQuery and do my first steps. I have the following Menu in my HTML: -- code start -- test.de Hauptmenü 1 http://www.mainteam.de/ Hauptmenü 2 showmore Mehr Infos

[jQuery] Need help building a jQuery dropdown menu

2009-09-21 Thread sammahoney
Hi folks I'm just starting out with jQuery. I want to make a simple 'ul' dropdown menu to improve my understanding. The basic flow is this: 'ul.menu li ul' has display:none >> on hover of li, get & store height of 'this' hidden ul >> set height of 'this' ul to 0 >> set display to block >> animat

[jQuery] need help with logic

2009-08-19 Thread efet
I have search page. At this page, when user enters a value to the form field and clicks submit, the value is posted and server's results printed inside main div. Now, I want to add search form to main page and so when user enters a value to the form field and clicks submit, he is redirected to sea

[jQuery] Need help with table sorter

2009-07-31 Thread Razor M
Is it possible to do some changes so that the bottom row will not be included while doing the sorting? Suppose I have totals in the bottom row, so I do not want that row to be sorted while using the table sorter through jquery. Please let me know if it can be done.

[jQuery] Need help with a custom selector to bind ajax callbacks

2009-07-20 Thread Rodrigo Tassinari de Oliveira
Hello everyone, I'm stuck with an annoying problem in this webapp I'm developing. I've created a small code to be called automagically on every ajax request, which shows a "loading..." div overlay while the ajax request is being processed. This works fine, and the code used can be seen in this p

[jQuery] Need help with a custom selector to bind ajax callbacks

2009-07-20 Thread Rodrigo Tassinari de Oliveira
Hello everyone, I'm stuck with an annoying problem in this webapp I'm developing. I've created a small code to be called automagically on every ajax request, which shows a "loading..." div overlay while the ajax request is being processed. This works fine, and the code used can be seen in this p

[jQuery] Need Help in Table Filter

2009-07-08 Thread bharathbhooshan ambati
Hi Friend, I am trying the table filter ..i found one excellent link: http://ideamill.synaptrixgroup.com/jquery/tablefilter/tabletest.htm i tried it worked great for me But when i tried with database connection,i have an issue with the search, if the table column contains any string varchar it is

[jQuery] Need help on How to load content via AJAX in jQuery

2009-07-03 Thread Erik R. Peterson
I found this script: http://yensdesign.com/2008/12/how-to-load-content-via-ajax-in-jquery/ I got it working, but it really looks bad in IE, along with erros. Any alternatives or sugestions? Here is my page: http://www.enaturalskin.com/needhelp.htm Many thanks. Erik

[jQuery] Need help in how to do pop-up box with checkbox and scrollbar

2009-06-28 Thread mives29
Hi! I'm quite new to this jquery, but now I'm facing a deadline and I've already wasted some time in thingking of how to do this. Here's a screenshot of what I would want to do: http://photos.friendster.com/photos/92/40/5660429/1_354785954l.jpg Basically, a "popup" will appear after clicking a b

[jQuery] Need help in Login

2009-06-24 Thread bharani kumar
Hi , Am very much confusion in php login session tracking , This is my requirement , Am doing travel booking portal , Before submit checkout , i have the radio option , that is existing user Yes No for new new user , If user clicks yes , then am showing the login form , Here i am entering t

[jQuery] Need help cuz I don't get 'this'

2009-06-14 Thread Logictrap
I need to get the src attribute of an img element that is a sub- element of 'this' but I can't figure out how to traverse 'this' to get there. The contents of 'this' are: this works: $('#output').html("ID: " + this.id); This does not: $('#output').html("SRC: " + this.img.src)

[jQuery] Need help with dependent select form options

2009-06-11 Thread blogjunkie
Hi guys, I'm trying to create a dependent select form like the one here http://www.ajaxray.com/blog/2007/11/08/jquery-controlled-dependent-or-cascading-select-list-2/ Here's my form: http://buzzmedia.com.my/honda/form.html Unlike the example from AjaxRay, my form has multiple rows. I need to fi

[jQuery] Need help with DIV manipulation

2009-06-03 Thread nanook72
Hi all, I need help with manipulating two div's, one holds the main content and the other holds the images matching that content. Right now I have the menu changing the content of the main div just fine, however I do not know how to change the images in the second div at the same time based on t

[jQuery] Need help optimizing/analyzing jquery / json

2009-05-27 Thread andymott
Hello Guys, I have created a site using jquery www.arc-max.com/cruisesearch/ the problem lies in the initial loading of the result page (the front page is a bit slow but that I can optimize that on my own) . I am using json to store the result set. The json file can get a bit bloated up anywhere

[jQuery] Need help! jQuery Mega Drop Down Problem...

2009-05-07 Thread cfDEV
Good morning all. I've been modifying a jQuery "mega menu" script for a site I am developing. The original script/menu can be found here: http://www.sitepoint.com/blogs/2009/03/31/make-a-mega-drop-down-menu-with-jquery/ Anyway, with my version I can't get the two rightmost pull downs on the menu

[jQuery] Need Help to Apply effect to newly created element

2009-05-06 Thread Jigar Mistry
Hi, I am using jQuery for multiple file upload. Now my requirement is as follows: 1) I can create file element dynamically through javascript. 2) I need to apply the jQuery ability to add multiple file in newly created element. Below are my js files Code to add input file dynamically

[jQuery] Need help with menu programming

2009-04-23 Thread heohni
hi, my menu looks like this: home DCT wir über uns philosophie team kompetenzen Beratung / Projektierung Softwareentwicklung

[jQuery] Need help with menu programming

2009-04-23 Thread heohni
hi, my menu looks like this: home DCT wir über uns philosophie team kompetenzen Beratung / Projektierung Softwareentwicklung

[jQuery] need help with jqGrid

2009-04-17 Thread led
I' m trying to use the jquery jqGrid plugin but i can't see it working with ASP code. this is the xml generated file. 114 191 15 192 15 193 15 and this is the html: jqGrid Demo jQuery(document).ready(function

[jQuery] need help: how to pass variable to attr in select statement

2009-04-02 Thread mylok
code like below: var selectid = Querystring.get("id"); $('div#mainnav .mainnav[alt="selectid?"]').addClass("color"); I want to select element which attr alt = selectid(variable from querystring). How can I do that? Thanks.

[jQuery] NEED HELP!! JQuery & XML not parsing/consuming properly

2009-03-18 Thread slgm
hi, I've looked through at awfaul lot of posts/articles and haven't been able to get this thing working. The xml and the jquery code is below. The problem ive been getting is that despite the xml being successfully load from the ajax call and despite the jquery loop looping through the xml no act

[jQuery] Need help handling multiple $.get calls :(

2009-03-12 Thread jimothy.sn...@gmail.com
Hi. I'm new here and I'm very stuck. I need help. Hopefully someone can tell me there's a very simple solution to my problem Smile I have a site where you can click links and open the relevant content in a "window" so to speak. It's all from the same domain. Anyways, my problem occurs when you cl

[jQuery] Need help handling multiple $.get calls :(

2009-03-12 Thread jimothy.sn...@gmail.com
Hi. I'm new here and I'm very stuck. I need help. Hopefully someone can tell me there's a very simple solution to my problem Smile I have a site where you can click links and open the relevant content in a "window" so to speak. It's all from the same domain. Anyways, my problem occurs when you cl

[jQuery] Need Help with changing css on an object

2009-03-07 Thread zeckdude
Hi, I am having some issues with my site. I have a main Nav with four links that load in 4 different sections. You can see the page I am working on here: http://idea-palette.com/official/newofficialsite4.html http://idea-palette.com/official/newofficialsite4.html What I am trying to do is,

[jQuery] Need help with checking checkboxes

2009-02-24 Thread heohni
Hi, I have a list of search results. Each result has its own checkbox to select a product. Each checked product ID gets saved to the session via Ajax. Fine so far, it works already. But I also have a "check / uncheck all" checkbox. That means, when I check all, I need to send all displayed (not

[jQuery] Need help in accorion Menu.

2009-02-19 Thread Ashish
Dear Team, I hope , I am asking a help to the right team... I am new to JQuery and I amusing a accordion menu and have a challenge in opening and closing the panel based on a Flag. On post back I need to check the flag and If flag is true, I need to open it. or else it should be closed(all panel

[jQuery] Need help with scrambled open/shut script

2009-02-14 Thread David Blomstrom
I downloaded jQuery a few months ago and used it to make a simple open-shut script. While redesigning/upgrading my websites, I messed it up. I'm not sure if I deleted a critical file, nixed the link to a critical file or what. I published a simplified version of a page at http://www.geobop.org/Tes

[jQuery] Need help to understand jQuery

2009-02-12 Thread shapo
Hi Guys I am having a tough time getting the hang of jQuery so the best of learning for me is to see my current code in jQuery so I can understand it better. Here is an GET ajax request I make in JS: function GET(link) { // -- Enable Loader Tag setClassNa

[jQuery] Need Help with :eq()

2009-02-09 Thread betweenbrain
Hi All, I'm modifying Leandrovera's Lightbox plugin (http://leandrovieira.com/ projects/jquery/lightbox/) to display descriptions in a Joomla based image gallery. I'm having some issues with getting the right count. The following is shortened excerpt of the code generated from (http:// axia.entr

[jQuery] Need help with validation plugin!

2009-02-05 Thread aze
Hello, I'm referring to this problem as I also got the same too, the form seem to submit although there is invalid field http://groups.google.com/group/jquery-en/browse_thread/thread/548c5ef899a93e5c/9c1ac52dc85a0955?lnk=gst&q=invalidhandler#9c1ac52dc85a0955 Need help! thanks a lot.

[jQuery] Need help validating a dropdown list

2009-01-31 Thread Kathryn
Hi all, I'm using the fantastic validation plugin (from bassistance.de) and have run into a little glitch. I understand the plugin doesn't currently handle dropdowns, but I found a possible solution on True Tribe (http://www.thetruetribe.com/jquery/1-jquery-api/68-jquery- plugin-validation-with-a

[jQuery] Re: [jquery]Need help in Simple Jquery Function I develop for tabs

2009-01-18 Thread Yuvraj Mathur
: jquery-en@googlegroups.com Subject: [jQuery] Re: [jquery]Need help in Simple Jquery Function I develop for tabs I have just created html with your content and js. It works just fine. ALL tabs work fine... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Jan 17, 2009 at

[jQuery] Re: [jquery]Need help in Simple Jquery Function I develop for tabs

2009-01-17 Thread jQuery Lover
I have just created html with your content and js. It works just fine. ALL tabs work fine... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Jan 17, 2009 at 3:30 PM, Yuvraj Mathur wrote: > > Hi, > I am stuck up with this function to make simple Tabs. It works abso

[jQuery] [jquery]Need help in Simple Jquery Function I develop for tabs

2009-01-17 Thread Yuvraj Mathur
Hi, I am stuck up with this function to make simple Tabs. It works absolutely fine only with the first two tabs. Can someone please observe the code and reply the problem. Below "d" stands for the header(div) in which the links are, "e" for the targeted content(div), and "f" for the sequence n

[jQuery] Need help to write one jquery/ html page

2009-01-09 Thread cogible
My problem is simple to state. I want an HTML page that has five boxes, with items in one that you can drag and drop into the other four, or back again, and which you can also re-order within any one box. I've got some working code that does this. But then, when the user has finished moving thing

[jQuery] Need help with a Jquery toggle bug in my menu's

2009-01-09 Thread serpicolugnut
I've got a full width drop down menu setup, using jquery's toggle to show/hide the hidden divs when the user clicks on the one of the elements or any of it's children. The problem I'm having (and it's kind of hard to reproduce), is that if the user has their mouse over one of the items while t

[jQuery] Need help with a Jquery toggle bug in my menu's

2009-01-09 Thread Ted
I've got a full width drop down menu setup, using jquery's toggle to show/hide the hidden divs when the user clicks on the one of the elements or any of it's children. The problem I'm having (and it's kind of hard to reproduce), is that if the user has their mouse over one of the items while th

[jQuery] Need help to decide on SWF/FLV/SIFR plugin - a bit unsure, for sure!

2008-12-19 Thread yvonney
Hi all! [OBJECTIVE: need best solution to have flash (and perhaps likely .flv as well) and also SIFR stuff work] Hoping to have a plugin guru advise as to whether 2 plugins whould be advised, or one, and which one(s) ??? Here's what I've thought. 1) There's a couple or a few flash/flv type JQer

[jQuery] Need help with Ajax-ColdFusion-Modal Login...

2008-12-11 Thread Rick Faircloth
I just can't seem to get my head around the processing flow for an ColdFusion and Ajax-based login using a Shadowbox modal window... Does anyone know of any tutorials that show how to use ColdFusion, jQuery, and a modal window (doesn't have to be a Shadowbox) for login? I found a tutorial by Ray

[jQuery] Need Help with my plugin

2008-12-10 Thread sad1sm0
I'm building my first plugin for jquery and I'm stuck on a really weird problem. I'm building a lightbox image gallery that turns an xml doc into a gallery with minimal effort. I've got it almost complete and I've ran into a snag. The plugin generates a lightbox with image controls (prev and n

[jQuery] need help

2008-12-09 Thread Hassan Ali
i've been surfing over net to find a slide show similar to http://www.frontpageslideshow.net/ i checked the jquery site, almost entire one, couldn't find similar. can someone provide any link which is totally based on css and javascript? i've very short time and want this solution. http://www.fr

[jQuery] Need help modifying this jQuery...

2008-12-07 Thread Rick Faircloth
I'm trying to put my first Ajax to use by creating a login form. To get there, I'm attempting to modify the first tutorial I've found which I understand enough to understand what it's doing and how it's working with a ColdFusion backend. Anyway, my first question is: How do I modify the code b

[jQuery] Need help with AJAX

2008-12-06 Thread Harshal
Hi, I have used the '.load' function to load a HTML page into a division through AJAX. But i noticed that if i insert any other jquery scripts in the page that is loaded through AJAX, then they are not executed. As an example i loaded a page using Ajax into a div, from a link in that page i wante

[jQuery] Need help adding rows to JCarousel

2008-12-05 Thread nat
I am desperate to get rows added to JCarousel, I am a js novice so I have made many attempts to hack with css with no success. I am trying to create a carousel that shows 6 dates in 3 x 2 grid at a time. Any guidance as to how to add rows to JCarousel would be greatly appreciated. -n

[jQuery] Need help traversing an unordered list

2008-11-07 Thread Logictrap
How do I access just the titles (ie 'Title 1', 'Title 2')? Every method I tried also includes the content. I tired using: not('[li]") & parent() This is an example list structure. I want to be able to get just the Title 1 Content 1 Title 2 Content 2 T

[jQuery] Need help traversing an unordered list

2008-11-07 Thread Logictrap
How do I access just the titles (ie 'Title 1', 'Title 2')? Every method I tried also includes the content. I tried using: not('[li]") & parent() This is an example list structure. I want to be able to get just the titles: (ie Title 1, Title 2, Title 3) Title 1 Content 1 Titl

[jQuery] Need help !!! $.preloadCssImages is not a function

2008-10-29 Thread Erik
I'm getting the following error via FireFox? Error Plugin (also IE errors): $.preloadCssImages is not a function I want to preload all of my images. I cannot locate the solution. I've tried everything !!! Please visit my test page: http://www.naturalskinsolutions.com/test.htm Source files: h

[jQuery] Need Help with Serializing Ajax Calls

2008-10-18 Thread aimhier
I am using AjaxManager and I modified the JSuggest Plugin and set the option to abortOld so that it aborts all old requests. However, the older requests are not aborted. The fragment of the code for declaration $(function() { var ajaxManager1 = $.manageAjax({manageType: 'abortOld', maxReq: 0}); .

[jQuery] need help in making dynamic form validation

2008-09-26 Thread Geuis
Hi everyone, I'm hoping someone can help me learn the right way to do this. Its experimental for me at this point. Example code is at the bottom. So what I'm attempting to do is to do input form validation by loading a function which self-assembles an object that has its properties set as the ID

[jQuery] Need help with jQuery array

2008-09-23 Thread Jim Davis
I am adapting Greg-J's hover fade methodto a navigation menu. Demo of my menu is here: http://jimdavis.org/celtic/fadetest.php If you view the source code you will see that I repeat the jQuery function for each menu item. Since this nav menu

[jQuery] need help with $.post with callback function in submit button

2008-09-05 Thread nananannae2
Is there any difference between $.post with callback function in a submit button vs a regular input button? When my submit button tries to post and get the callback result it never happens. Thanks!

[jQuery] Need help making a menu appear next to the users image....

2008-09-03 Thread Aaron
Hi I have a website that I am currently working on. I have user's to upload images and select which image is default. I want to make the user able to when they have the mouse over the image to have a menu next to the image fade in. Now the problem. I tried with hover and then tried using mouseo

[jQuery] need help with opacity

2008-09-02 Thread bobh
Hi all, I'm having some trouble with setting an 11% opacity for a parent container, while its children remain at 100% opacity. Here's my simplified html: and I'm doing a simple css thing to control the opacity: $("div").css({"opacity": 0.11}); So now all content in the container is

[jQuery] Need help with a quiz

2008-08-27 Thread Caoimh
Hi, I'm trying to make a quiz (it's only for displaying information for kids). The requirements are as follows: A list of questions (say 10-15). Each question will have a list of checkboxed answer options Some questions require a combination of two or more checkboxes to be checked (this is where

[jQuery] Need help: "Access to restricted URI denied" error, but code should be on same host

2008-07-19 Thread Stephen
Dear Jquery list, I've read about this "Access to restricted URI denied" error before, but I do not understand why it is happening to me. I have a PHP file sitting on http://vgmworld.com/specialorder/specialorder.php that makes an AJAX post call to a file also sitting on the same host at http://v

[jQuery] Need help with animations in IE

2008-07-16 Thread The Sixth Halcon
Hi, this is one of my firsts experiences with jQuery and I have a little problems already. The problem explanation is that I want to apply an effect to a css layer (and it is applied) that when you click on a special div, it moves some layers. It works perfectly with Firefox, but not in IE... I le

[jQuery] Need help with div selection

2008-07-16 Thread zerowing
How can I select the #blc2? HTML Some text Some title Script $(document).ready(function(){ $('div#blc1').ifixpng(); $('.openBloc > #blc2').ifixpng(); }); CSS #blc1 { Background:URL(../img/blc-1.png) no-repeat; Display:

[jQuery] Need help on repositioning elements ect...

2008-07-12 Thread Aaron
HI ok I am making a website. I am trying to make the css position property like left: and top setting ect variable. That means it can be set to any number. I plan to use javascript to grab the clients browsers setting and use some math formula to position the elements and also resize the elem

[jQuery] Need Help Filtering Content

2008-07-11 Thread Willie
I am building a test site with jquery. The site lists links from several rss feeds. On the right side of the page there is a sources legend. I would like to be able to click a source and show only links from that source while the others hide. Then when I click a different source, those links appea

[jQuery] need help superfish jquery for Joel Birch

2008-05-29 Thread Greg
Hi ! Need help for parameter timed delay on mouseOver not mouse out We want small delay before menu drop down 1 second for example our test : http://infoclick.ca/newweb/ Our Goal http://www.target.com/ if you put your mouse from left to right (women to Sell All) menu doesn't open put if you

[jQuery] Need help with easy fix for image gallery

2008-05-05 Thread Jason
Extremely new to jQuery so I am sure this is an easy fix for some of you advanced players out there. Thanks in advance. Creating a photo gallery and want the currently displayed image to fade away before the new image fades in...this is the code I have thus far. $("#imageSelect li a").click(fun

[jQuery] Need help on jQuery.browser.version

2008-05-04 Thread chrbar
Hello, I saw there were a Browser Detect included with jQuery. I would like to use two different code line in my Web page depending of the browser version: If the browser is Safari and the version is older than 3, the code line is: test Else (for all other browsers including Safari 3), the code

[jQuery] Need help with hover and fadein and fade out

2008-05-03 Thread Aaron
Hi I am having trouble using the hover and fade in and fade out I look at the doc I understand it but I don't understand how I can use it for what I want to do. I want the user to be able when the mouse is over a photo of them a table or window fades in with other photos they uploaded ect when th

[jQuery] need help escaping cookie for user initiated click

2008-04-17 Thread somnamblst
I have a cap frequency cookie capping the slide down of slidebar div, but the cookie is preventing the slidebartrigger from showing and hiding slidebar on user initiated clicks. http://www.cincinnati.com/test/testNew.html The way it should work (no cookie) http://www.cincinnati.com/test/testO

[jQuery] Need help with a toggle - works if I click twice!

2008-03-24 Thread Priest, James (NIH/NIEHS) [C]
My code: Health Status or Disease 54 Topics - Click To View Acute Lung Injury

[jQuery] need help with tableSorter plugin - way to pass names rather than # to header?

2008-03-06 Thread Bhaarat Sharma
Hello I made an earlier post regarding this as well but now i know what the problem is So i have a table like this http://i32.tinypic.com/287oolg.jpg the code for the table i slike this 1 2 3 4 5 members 3a 3b 4a 4b 4c

[jQuery] Need help picking a Jquery Popup plugin

2008-03-06 Thread prakash123
Hello I have a list of links in a page, i want the end user to click the link and read the content in a popup window. (not the greybox types, that basically lock the whole page). I need some clean unobstrusive popups. Can some one guide me to good popups in jquery? Thanks Prakash

[jQuery] Need help with the basics: functions & variables

2008-02-13 Thread [EMAIL PROTECTED]
I'm embarrassed to admit this. After literally days of reading & experimenting, I still haven't got a grip on how we're supposed to define functions & get results out of them! ( http://jquery.cherryaustin.com ) For example, I used this to find out whether images are on ( http://tinyurl.com/3dy6pb

[jQuery] Need help with the basics: functions & variables

2008-02-13 Thread [EMAIL PROTECTED]
I'm embarrassed to admit this. After literally days of reading & experimenting, I still haven't got a grip on how we're supposed to define functions & get results out of them! ( http://jquery.cherryaustin.com ) For example, I used this to find out whether images are on ( http://tinyurl.com/3dy6pb

[jQuery] Need help with birthdate validation

2007-12-19 Thread sothis
Hello, Awhile ago, I clumsily implemented Jorn's fantastic validation plugin to validate a birthday field. The implementation wasn't hard, but getting the page in general to work how I want is tricky. I'm wondering if anyone has an idea in how I might accomplish these goals: 1. Validate based o

[jQuery] Need help with the value of a Macbook

2007-11-07 Thread Andy Matthews
I know many of you on this list are Mac users and so I'm asking for help. I'm looking to upgrade my computer (new workstation, and two new monitors). I'm budgeting about $1500 - $2000. A co-worker of mine said that a friend of HIS is selling a Macbook. Since I know that's an Intel machine I was c

  1   2   >