Re: [jQuery] Help: Iterate through unknown number of elements, apply function

2010-02-23 Thread Nathan Klatt
On Tue, Feb 23, 2010 at 2:20 AM, xstaceyamayx wrote: > Anyway, I have 2 select boxes. I can populate SelectA with items from > a database, move the items from selectA to selectB and back again by > clicking "add" and "remove"... Change your HTML to look something like this:

[jQuery] Help: Iterate through unknown number of elements, apply function

2010-02-23 Thread xstaceyamayx
Hey there, newbie here... Still getting a grasp on jQuery, so I'm probably overthinking or extra- typing... Anyway, I have 2 select boxes. I can populate SelectA with items from a database, move the items from selectA to selectB and back again by clicking "add" and "remove"... BASIC CODE (HTML):

[jQuery] Help your friend ajith win RC merchandise

2010-02-14 Thread Royal Challengers
Hi jquery-en Your friend really enjoys the fan club and activity at www.RoyalChallengers.com, and would like to invite you to join as well. We're also running a promotion - your sign up could help your friend win RC merchandise and IPL tickets. Help them out and experience the magic of belongin

[jQuery] Help with jquery on my website

2010-01-27 Thread Geoffrey Gordon
http://www.blazewebstudio.co.za/Network_2/index.html please help me with the j-query problems on the top horizontal and the side vertical accordion, it bounces and the overflow is out of whack. Also the menu is sometimes strange if you go over it too fast, I Know too many problems but please help

[jQuery] Help with jquey accordian

2010-01-27 Thread Geoffrey Gordon
Help Jquery I Have Customized The Following Menu To Suit My Purposes, How Do I Make The Effect Mouseover Instead Of On-click And It Must Not Bounce Or Overflow. Http://bit.ly/FceQ9? -- View this message in context: http://old.nabble.com/Help-with-jquey-accordian-tp27340367s27240p27340367.html Se

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

2010-01-21 Thread Asharudeen
Hi, By using CloumnNavigation plugin ( http://plugins.jquery.com/project/column-navigation), Currently to list the tree list, we need to give the html in the following format, Homepage

[jQuery] help combine LightBox & jMyCarousel effect?

2010-01-16 Thread bhupal
I want the combine effect of these two plugins.. LightBox http://leandrovieira.com/projects/jquery/lightbox/ & jMyCarousel http://www.enova-tech.net/eng/lab/jMyCarousel but when i tried to combine these plugins.. the resulting page looks good in my localhost but don't work well when uploaded to

[jQuery] Help with solution to place audio player in overlay at top of web page

2010-01-12 Thread djtonyz
I'm not a developer, but a Product Manager looking to put an audio player at the top of a web page inside an overlay, such that if I navigate between pages, the overlay and subsequently the audio player stay constant at the very top of the page. I'm not sure if I have the language correct when I s

[jQuery] Help with async ajax inside a loop.

2010-01-08 Thread slmnhq
Hi, I have a block of code which iterates through a list of urls and performs an asynchronous ajax request on each url. The call back function assigns the returned data object to the key of another object. The key is the current item in the list that is being iterated on. The problem: The key is a

[jQuery] help fix syntax

2010-01-07 Thread runrunforest
syntax a: not working, the parent of current element not being removed $('a.del').click(function(e){ e.preventDefault(); $.post('/img/del.php') , {'img': img },

[jQuery] help fix syntax

2010-01-07 Thread runrunforest
syntax a: not working, but its what I have in mind. $('.del').click(function(e){ e.preventDefault(); $.post('', {ori: response.img_name , thumb: response.thumb_n

Re: [jQuery] Help with change event

2010-01-06 Thread John Arrowwood
The last .change() fires the event. On Wed, Jan 6, 2010 at 6:43 AM, NotionCommotion wrote: > > > I am interested in the event change, and am looking at > http://docs.jquery.com/Events/change. > > $("select").change(function () { > var str = ""; > $("select option:selected").eac

[jQuery] Help with change event

2010-01-06 Thread NotionCommotion
I am interested in the event change, and am looking at http://docs.jquery.com/Events/change. $("select").change(function () { var str = ""; $("select option:selected").each(function () { str += $(this).text() + " "; }); $("div").text(s

Re: [jQuery] Help needed to find image dimensions

2010-01-05 Thread John Arrowwood
It would be wonderful if I am wrong, but I don't think you can get the image dimensions via JavaScript. But you don't need to... a.preview { max-width: 200px; max-height: 200px; } This will force the image to fit within a 200px by 200px window without altering the image aspect ratio. On M

[jQuery] Help needed to find image dimensions

2010-01-04 Thread banacan
I'm using Preview.js to create image previews on hover. The script as it is now displays the full size image on hover, but that is often too big. I have been able to reduce the preview size by defining width='200px' which works fine in many cases, but when the image is tall and narrow a 200px wid

Re: [jQuery] Help with dynamicaly created table

2010-01-02 Thread aquaone
You need to trigger the update event for the table for tablesorter to rebuild the cache. At the bottom of your .delete_button click function, add $("#shop_list").update(); and it should fix your problems. For more information, please see http://tablesorter.com/docs/example-ajax.html. aquaone On

[jQuery] Help with dynamicaly created table

2010-01-02 Thread Jahvi
Hi, Im currently using the tablesorter plugin to style a table im using, the code is the following: $(document).ready(function(){ $("#shop_list") .tablesorter({widthFixed: true, widgets: ['zebra'], headers: { 2: {

[jQuery] Help needed with textarea.

2010-01-02 Thread direheart
Im unable to store any values from the textarea input. When ever I run the for loop to retrieve the values from the array, it is displayed as undefined. I not sure how to solve that problem. Any help would be appreciated. ---

[jQuery] Help w/ Toggle Hide & Animate

2009-12-30 Thread bman
Hi All, I am trying to build a script that allows me to click a pic with class 'threetest', then pics with classes 'onetest' and 'twotest' are toggle hidden, then 'threetest' is animated to move to 2% off the left margin and finally some other div called 'newtext' is revealed. Here is my script s

Re: [jQuery] Help on Independent DIV's that toggle!!

2009-12-29 Thread brian
Use classes: http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js";> $(document).ready(function() { $('.SomeOtherClass').hide(); $('a.SomeClass').click(function() { $(this).next('div.SomeOtherClass').slideToggle(400); $(this).text(

[jQuery] Help on Independent DIV's that toggle!!

2009-12-29 Thread Erik
Hi everyone, I got one DIV working with my toggle script. Works great. I need to add a few more DIV's with the same toggle script on the SAME PAGE. I wanted to duplicate the same script with different DIV names, but it didn't work. How can i use the same script with INDEPENDENT DIV's on the sa

Re: [jQuery] Help with droppable

2009-12-18 Thread Richard D. Worth
Answered here http://groups.google.com/group/jquery-en/browse_thread/thread/6baa555a340b3ec4 - Richard On Fri, Dec 18, 2009 at 5:28 AM, Alex Beston wrote: > Hi there, > > I'm trying to create some words which can be dragged and dropped into a > container (called droppable). > > I've tried to dy

Re: [jQuery] Help with draggable / droppable

2009-12-18 Thread Richard D. Worth
Worked ok for me: http://jsbin.com/anure source: http://jsbin.com/anure/edit If you need any more help, note that there's a separate list for jQuery UI: http://groups.google.com/group/jquery-ui - Richard On Thu, Dec 17, 2009 at 1:14 PM, Alex Beston wrote: > Hi there, > > I'm trying to creat

[jQuery] Help with droppable

2009-12-18 Thread Alex Beston
Hi there, I'm trying to create some words which can be dragged and dropped into a container (called droppable). I've tried to dynamically create some divs each containing a word, and they can be dragged okay, but when I try to drop, it isnt recognised. I notice that if I have a static div in th

[jQuery] Help with draggable / droppable

2009-12-17 Thread Alex Beston
Hi there, I'm trying to create some words which can be dragged and dropped into a container. I've tried to dynamically create some divs each containing a word, and they can be dragged okay, but when I try to drop, it isnt recognised. thanks in advance, Alex - Heres the code I have so

[jQuery] Help on :contains

2009-12-13 Thread kumar
Hi I am new jQuery Please help in this. I got table which contains different text values in first 3 columns of every row and 4th column contains a button. when the button is clicked which is in 4th column(example: td:eq(3)) of a row i am trying to find the 2nd column(example: td:eq(1)) of that r

[jQuery] Help! Issue with Gridview using JQuery

2009-12-11 Thread Bunn
I'm calling _doPostBack('UpdatePanel1', ''); in javascript and it updates my gridview after a record is inserted. The record is added from a panel above the gridview. But when I make the same call after doing an update and delete, I get the following error: Microsoft JScript runtime error: Object

Re: [jQuery] Help... anyone!

2009-12-08 Thread brian
I'm not sure I understand in what sense the page is freezing sometimes. I've had a look in FF (Linux) and haven't seen anything untoward. It could be that you've specified that the page never be cached. Try removing that, clear your cache, and click around some. You do have a fair number of JS fil

[jQuery] Help... anyone!

2009-12-07 Thread Mike
Before I dive into my issue, I just finished reading "Learning jQuery 1.3" and decided to go full fledged and create my first site implementing jQuery only! I had a little experience before this but found that jQuery is a lot of fun and easy to implement, even for a semi noob. (maybe a total noob

[jQuery] Help with appending div to root item only

2009-12-06 Thread Valkesh
Hi Ive got my menu displayed on this site http://valkesh.000space.com. The issue I am having is that I want the hover image (red part) to be displayed only when hovering the root li, and not all subsequent li items in the menu.. because as you may see now, even when hovering the li in the submenu

[jQuery] Help with Datepicker

2009-12-03 Thread polarwarp
I am trying to use the jquery datepicker. I can't figure out how to make an image appear next to my textbox that will launch the popup. Currently I have a .NET textbox which you user can click on that launches the calendar. So that part seems to be fine. However no image which would be more intu

[jQuery] Help with clone()... trying to build an Ajax invoice

2009-12-01 Thread k...@beza
Hi guys I have to build an invoice, and have done the heading part without problems. Now, I'd like to build the products part, where user will add new rows without reloading the page You can see a working sample here http://www.bambooinvoice.org/index.php/invoices/newinvoice I have also a screens

Re: [jQuery] jquery help

2009-11-24 Thread Bjorn Symister
Sorry, the link came through with an extra ³ at the end. Below is the link. If that doesn¹t give enough information, I am open to Instant messaging. http://newyork.craigslist.org/que/cpg/1479652385.html On 11/24/09 9:25 AM, "Michel Belleville" wrote: > Hmm, seems like the url on craig's lis

Re: [jQuery] jquery help

2009-11-24 Thread Michel Belleville
Hmm, seems like the url on craig's list is stale or something, but as soon as I get more details it's possible that I can point to the cause of your troubles. Regards. Michel Belleville 2009/11/24 Bjorn Symister > Thanks Michael, and I wont take it the wrong way, its business, nothing > pers

Re: [jQuery] jquery help

2009-11-24 Thread Bjorn Symister
Thanks Michael, and I wont take it the wrong way, its business, nothing personal :). For some reason I think I¹m just not explaining myself properly. I have written the code according to how I stated the problem and the data does not get transferred. I have placed the problem up on craigslist ye

Re: [jQuery] jquery help

2009-11-23 Thread Michel Belleville
Right. Don't take it the wrong way but here's how it works on a mailing list where people help you for free, you don't ask people to do your job for you. Instead, what you could be doing is, try to do things, encounter problems, ask about the specific problems you're encountering, and usually get a

Re: [jQuery] jquery help

2009-11-23 Thread Bjorn Symister
I apologize for not being clear. I am not getting the information I need on (Server1) from (Server2). Would you be able to send me a codd snippet that will pass the information. One for the scripting server and the other for the client server. I am collecting email information. Thanks, Bjorn

Re: [jQuery] jquery help

2009-11-23 Thread Michel Belleville
Good, now I know your server architecture in details. Still you forgot to mention what problem you are facing, and how it relates to jQuery. As far as I can see using your reply you're using the right method, and I don't see any error or problem you should be facing here. Michel Belleville 2009

Re: [jQuery] jquery help

2009-11-23 Thread Bjorn Symister
Thanks Michael for helping out. I have two servers. Server 1: Scripting Server ­ I have full control over this server and this is where all server side script goes. Server 2: Client Server ­ I cannot put any server side script (such as php) on this server. Only HTML, CSS, Javascript. I have to

Re: [jQuery] jquery help

2009-11-23 Thread Michel Belleville
Using solely the content of your message I've deduced that : 1. you're facing a problem 2. you're using jQuery 3. something that is composed of two files containing stuff isn't doing whatever it's meant to be doing using functions and probably gizmos I've got the first and second poin

[jQuery] jquery help

2009-11-23 Thread shobhit
sir i am facing problem while using jquery: i have two different .js file both r include in one page and having same type of function like function() so they r not working at same time... plz help me out of this problem .. thanx in advance

Re: [jQuery] Help newbie with Superfish menu CSS

2009-11-16 Thread Charlie
superfish.css is what yo need to look for, however since you are implementing into a joomla template that already has another menu's css it gets a bit more complicated as you also have file navigation.css interacting as well In some cases superfish rules will prevail, in others it will be the

[jQuery] Help newbie with Superfish menu CSS

2009-11-16 Thread Fraggy
Hi there, sorry if I am in the wrong forum for this question, but I don ´t know where else to ask. I got a "simple" CSS problem with the Superfish menu: how do i change it's skin I edited superfish.css to get this result: http://www.qomg.com.ar/qomg/index.php/ but now I´m stuck: which file do I

[jQuery] Help me with autocomplete

2009-11-13 Thread Felipe Sampaio
Hi all, I don´t retrive the response of search, what did I do wrong? the code. ACTION public class UserAction extends ActionSupport implements ModelDriven{ private static final long serialVersionUID = 1L; private User user = new User(); private UserDAO dao = new UserDAO

[jQuery] Help me with autocomplete

2009-11-13 Thread Felipe Sampaio
Hi all, I don´t retrive the response of search, what did I do wrong? the code. ACTION public class UserAction extends ActionSupport implements ModelDriven{ private static final long serialVersionUID = 1L; private User user = new User(); private UserDAO dao = new UserDAO

Re: [jQuery] help with milkbox conflict

2009-11-09 Thread Richard D. Worth
See http://docs.jquery.com/Using_jQuery_with_Other_Libraries and http://docs.jquery.com/Core/jQuery.noConflict - Richard On Mon, Nov 9, 2009 at 8:02 AM, jessicaw1974 wrote: > Hi, I am new

[jQuery] help with milkbox conflict

2009-11-09 Thread jessicaw1974
Hi, I am new to this and attempting to use milkbox. It looks like jquery-1.3.2.min.js is preventing milkbox from working. I wonder if there is an obvious conflict (already documented), or if this requires more exploration. I am pasting code below. Thank you. Jessica @import url(css/milkbox/mil

[jQuery] Help with jQuery portfolio code

2009-11-07 Thread riddle.w
OK So I'm trying to get my portfolio up and working. The problem I'm having right now is some glitchy code that I'm using for the porfolio. Right now it displays 9 thumbnails inside of a container. Then once you click on a thumbnail, they all fade out to a loading bar. Once the portfolio and pictur

[jQuery] Help applying a class dynamically to a text area

2009-11-05 Thread Deepdesign
Hi I have the following code in my head tags: $(document).ready(function() { $('input[title]').each(function() { if($(this).val() === '') { $(this).val($(this).attr('title')); } $(this).focus(function() {

[jQuery] help fixing a cycle+jcarousel setup where imgs are loaded after onload

2009-11-01 Thread jeremybass_offset
Hello, here on this site http://www.visitnorthcentralidaho.org/ I have a cycle + jcarousel for imgs on the right side.. it works in all but IE... the issue is that I'm added the extra images after the load. I have finally got the thumbs to act right but... well it's acting right in all but IE...

[jQuery] Help: Serialize html form into JSON

2009-10-22 Thread Ray Daly
Need help. Stumped. I'm using jQuery and Ajax/serializeArray to read a form to get JSON object. However, it is in a format of: {"name": "firstname", "value": "Mary"} while I'd like to see it as {"firstname": "Mary"} to put it into couchdb and another application. Of course I have to use json2.jx

[jQuery] Help validating form

2009-10-20 Thread ReynierPM
Hi every: I'm trying to validate this form but I have a lot of problems. The file jquery.validations.paypal.js contains the code to validate the form. What's happen? For example if I leave a required field empty it doesn't validate and don't show the messages and so on. Can any help to fix thi

[jQuery] HELP!!! css & content filters

2009-10-15 Thread huntspointer2009
- Can someone please help me solve the following issue? - How can I select and apply a 'background-color' to the following tags using JQuery? I've tried the following code, but it does NOT work: var test_css = {'background':'#000'}; $("ul li:nth-child(3n)").css(test_css);

[jQuery] Help with values being returned

2009-10-04 Thread Nathan
I am receiving back values from google maps, the values returned are correct although I would prefer them to return in a different format. *** Code *** value = jQuery(".google_impnote").next("b").text(); value returns back a resault like so ValuesValuesTest I need to return the values to be some

[jQuery] Help adding a timer to the innerFade plugin ?

2009-10-03 Thread Alex Barrios
Hi everybody. I'm using the innerFade plug in [1] as a news ticker on my site [2], but it will be more usable if i show in a corner of the news area a timer that says to the visitor how much time (in seconds) must wait before it shows the next news. Somebody has done something like this with thi

[jQuery] Help using

2009-09-30 Thread Jsudesign
Hello I'm in need of some help in getting my custom ad set up working. Any help would be greatly appreciated. Here's what I'm trying to do: I have content set up and after 10 minutes I want to display an advertisement over the content that last for 5 minutes. So it would look like this: Regular

[jQuery] Help using cylce(plugin)

2009-09-30 Thread Ricardo
Hello! I have this html markup: --some images here And this javascript code: $('.dinamica').cycle({fx : 'fade', timeout : '4000'}); The images in the "dinamica" div turns ok. But the second div stays bellow the dinamica div. I tried to change the display of both divs to "bloc

[jQuery] help read code

2009-09-29 Thread runrunforest
Hi, this code is from a dropdown box, where clicking on the "a.signin" will open or close the box. So I don't really get how the syntax below work $(document).mouseup(function(e) { if($(e.target).parent("a.signin").length==0) {

[jQuery] help with event binding on an ajax calendar

2009-09-26 Thread mjatharvest
I'm having trouble binding the same event to two different links in the html here's a link http://tinyurl.com/ydzzsjv what I want to happen is click on a link and jquery loads the previous month html, this works fine, but if I click next, then the page refreshes it's almost as if it lost it's e

[jQuery] help to simplify code

2009-09-19 Thread alienfactory
i would like to know how i could do it better this actualy repeats 3 more time to get the other mouse over states. Please dont write any code i am still learning and would be helpful if anyone could just guide me in the right direction Many Thanks $('#vision, #navvision').hover(

[jQuery] Help with error script

2009-09-15 Thread Dave Maharaj :: WidePixels.com
I have an ajax function that checks fields to validate and display error messages. There are multiple messages depending on the error per field in some cases, to short, to long, already taken, invalid, cant be empty and so onyou get the idea. My function is like this: function(error) {

[jQuery] help with indexing items with random variable to appear in correct order

2009-09-14 Thread roryreiff
Hello, Below is a script I am working on for a slideshow for a set of 5 divs. I am generating a random number to represent the index of the starting div, i.e. the one that gets displayed in the middle. All of the other 4 divs get relative indexes so that they appear either to the left or right of

[jQuery] Help with getting variable

2009-09-13 Thread Dave Maharaj :: WidePixels.com
Hoping for some simple help here. I have this structure in my forms name="data[User][username]" But depending on the form it the ['User'] section will change throught the site. How can I pull the User as a variable? The script has something like this: $.post('/ajax_validate/users/', {

[jQuery] Help with Add/Removing Classes

2009-09-09 Thread John Hanks
Guys, I have a problem with my menu. I am trying to add and remove classes when clicking on the main menu links. For instance when on load, the 'Home' is the current tab clicked, but when I click on 'Contact Me' I would like the class current to be removed from 'Home' and added to 'Contact Me' inst

[jQuery] Help modifying jquery.lavalamp.min.js

2009-09-03 Thread Karen Morales
Hi Is it possible to modify the class below (jquery.lavalamp.min.js) so that when the LavaLamp click event is set on a specific text, the text color is set to red. For instance when loading this link http://karen.2kmegs.com/ the 'Home' (since its the active one) is set to red. (function($) { $.fn

[jQuery] Help modifying jquery.lavalamp.min.js

2009-09-03 Thread Karen Morales
Hi Is it possible to modify the class below (jquery.lavalamp.min.js) so that when the LavaLamp click event is set on a specific text, the text color is set to red. For instance when loading this link http://karen.2kmegs.com/ the 'Home' (since its the active one) is set to red. (function($) { $.fn

[jQuery] Help getting elements name.

2009-09-02 Thread gilberto.ramoso...@gmail.com
Hello I have a bunch of radio button and I want a funtion tu run when any of the radio button is clicked so I used $('input:radio').click (function... what I want to do is to get the name attribute of the clicked radio, how can i do this?

[jQuery] Help with Required( dependency-callback )

2009-09-02 Thread HDflat
http://docs.jquery.com/Plugins/Validation/Methods/required I am trying to implement the bottom option into my website, and i think this is the option i want. Im trying to get an either or validation, that one or the other is required. I think this one can do it, but is there a way instead of r

[jQuery] Re: Display Form Help by Jquery - Help Needed

2009-08-31 Thread James
This group is for jQuery-related questions. Do you want to achieve this using jQuery? That is not recommended, by the way. You can achieve this using tables (with ), or using 's and settings styles to "float: right". On Aug 30, 3:47 am, SJRANJAN wrote: > i want to build a page like ... > > http

[jQuery] Help with LavaLamp

2009-08-31 Thread Karen Morales
Hi I keep having problems integrating a JQuery Lavalamp with Submenus. Take a look at http://karen.2kmegs.com the lavaLamp feature only works when hovering on the submenu items. I would like it to move when hovering on the root item like for example Products. My Javascript code is

[jQuery] Display Form Help by Jquery - Help Needed

2009-08-30 Thread SJRANJAN
i want to build a page like ... http://www.shaadi.com/registration/user/index.php there when u go to each and every field it shows help in the right side i want to know how to create like this ... any one have idea about this

[jQuery] Help getting started with JSON (and PHP)

2009-08-27 Thread sso
I need to return several values and I'd rather do it all in one ajax call. However there doesn't seem to be anything in data. Perhaps I'm way off here. I appreciate any guidance you can give me. Thanks :) This is my jquery $('#cart-pulldown').livequery('click', function(event){

[jQuery] Help with show hide function

2009-08-21 Thread Jacques Choquette - WhistlerGraphicDesign.com
HI Everyone I have the following jquery script $(document).ready(function() { // hides the all tabs as soon as the DOM is ready // (a little sooner than page load) $('#homeTab').hide(); $('#whoTab').hide(); $('#whatTab').hide(); $('#whereTab').hide(); $('#workTab').hide(); // dis

[jQuery] Help Add variable to jquery file tree

2009-08-21 Thread 262Rui
I'm using jquery file tree plugin and my document head goes like this: $(document).ready( function() { $('#fileTreeDemo_3').fileTree({ root: 'download/', script: 'conector.php' }, function(file) { al

[jQuery] Help with Test Case for jQuery XSLT Plugin

2009-08-19 Thread LindsayT
I'm using a jQuery XSLT plugin to load static content from an XML file for my portfolio (http://www.oogeeyot.com) It seems for some people, the content loads correctly, but for others, the user has to select the links more than once to get the content to load. I ran this test case: http://www.o

[jQuery] Help with using the 'not' selector

2009-08-14 Thread MiKiTiE
Hi group, I would appreciate a point in the right direction here, as I seem to be getting lost. I would like to be able to write a function which will trigger when the mouse is clicked, but only do a certain thing based on WHAT is clicked. Which is why I figured the "not" selector would be useful

[jQuery] help with image titles & jQuery Slideshow

2009-08-11 Thread Jessie
Hi I am new to javascript and am having a lot of trouble with a photo slide show I am creating for a website- I used a jQuery based program called Galleria. Here is my problem- Galleria creates thumbnails for you from your images- you make an unordered list in which you put all the img tags. Whate

[jQuery] help needed retrieving json data with jquery

2009-08-07 Thread efet
There is not a single clear example that explains how to pull json data as simple as possible. I have a valid json and I need to retrieve it with jquery my json output is as: { "title": "blog entries", "items" : [ { "title": "Can Members of the Diaspora Work Effective

[jQuery] Help Creating An Array

2009-07-31 Thread Stoney
I've got a table that is produced through 2 loops (using coldfusion). I need to be able to place the classes within an array, that way I can calculate the columns and rows. Here is the link: http://mercury.hamilton.edu/devmpstone/forms-pdf/employee-expense-report.cfm The JavaScript looks like:

[jQuery] Help with jquery Navbar rollovers.

2009-07-30 Thread Robert
Hi I have been trying to find an answer to this question. I am trying to create a nav bar using jquery that uses rollovers. So there is an On state, off state, clicked state for three different tabs/images. example: Home | Support | About The problem I’m having is getting the clicked/on state to

[jQuery] help with an animation effect

2009-07-24 Thread Sir Rawlins
Morning all, I'm looking for some help with an animation effect and your thoughts on how best to achieve it. At this stage we simply have a graphical representation, we can splice the images up any way we like, I'm really looking for your suggestions. The first stage is just the basic static obj

[jQuery] thickbox + jquery help

2009-07-20 Thread mcbig
hello i would like to customize a carrousel with thickbox by adding a description to each image but i m a bit lost, i would be VERY grateful to anyone helping me jQuery is 1.2.6 here is part of my code var mycarousel1_itemList = [ {url: "./images/deunan_evening_dress_s.jpg", title: "fff", d

[jQuery] Help with variable passing and jCarousel callbacks

2009-07-19 Thread oswaldcobblepot
Hi everyone, I think this is probably an easy thing to fix, I'm just a bit lost at the moment. I have a photo gallery up and running that uses the Galleriffic plugin alongside the jCarousel plugin, and I am currently trying to get the carousel to scroll along with the displayed image. I know th

[jQuery] Help in validation plugin

2009-07-19 Thread MrConfused
I have just started using this great validation plugin but I encounter problem in "Remote". I do not know how to create a JSP script that will take in the parameter for the evaluation. Can anyone show me some example codes so that I can get started? Thanks a lot.

[jQuery] Help for a noob: AJAX, Autocompletes and JSON

2009-07-16 Thread Phil
Hi, Im new to ajax and serverside scripting (forgive me for the rediculous questions i will ask i'm only 15). I want to create a page where there is an auto-comples plugin that will pull the values from a JSON database(?) Once the user clicks on the value it will populate a container div with ot

[jQuery] help w/ plugin

2009-07-16 Thread intrinsi
I have created a plugin called replaceClass, found at http://plugins.jquery.com/project/replaceClass. However, this works only on hover and I would like to broaden the trigger to include more events. Also, it would be nice to work with id's as well. Any help is appreciated and I am happy to move t

[jQuery] help with Superfish menu on Joomla in IE6/7

2009-07-15 Thread kanjigirl
My Superfish menu's working fine in FF and IE8, but broken in IE6/7: http://www.redkitecreative.com/projects/checkmark/ My developer who implemented this menu for me is no longer available and I'm not sure what CSS I should be editing here - having never used Superfish before. Can someone point

[jQuery] help on function val()

2009-07-14 Thread rejome
Hello, Here is my prototype : http://rejome.homeip.net:8080/prototype.html I don't understand how I can get the radiobutton value in the function... Please help me :-)

[jQuery] Help with jQuery validator plug in

2009-07-13 Thread erin_mcg
I've been searching for days for help on this and cannot find it anywhere and if I am posting in the wrong place, accept my apologies, I am desperate for help My project is due to the client today. I am building a form using a jQuery contact form slider. Got that working, no problem. I need a

[jQuery] Help with figuring out the drop target

2009-06-28 Thread Khai
Hello, If each row of a big table was clickable, following best practices, we should not attach a click handler on each row, we should attach a click handler on the container, and in the click handler, figure out which row was clicked. We can do this by examining event.target. The reason for do

[jQuery] Help with some jquery basics

2009-06-28 Thread Lee
Can someone help me to get opid to be populated. The selectors all work correctly, and the code cycles the correct elements (tested this with an alert). Problem is I need to get the values I cycle in the each statement out and into the wrapping click function. Anyhelp would be appreciated. At the

[jQuery] Help ::Without URL / pagerefresh to get into login ((-->very urgent<--))

2009-06-24 Thread bharani kumar
Hi all , Yes this is second post , i don't get reply for my first post , Am working on the travel booking site, In my site user select the oder , after selected , there i given the divertion , pay by card or cash , Assume if they choose card , then i show the links like , login(existing customer

[jQuery] Help needed - jQuery width jumping

2009-06-15 Thread joro3d
Hi, I have been fighting a terrible problem. The situation that I have is: I have a column with text (#content p) and next to it an anchor with image. Images can be portrait or landscape and ratio is not fixed. They just have to fit in 400x400px square. My task is to make the text column which s

[jQuery] [HELP] DivMenu

2009-06-12 Thread Glazz
hi, i've a function that when i click on a link a div shows up, and it works nice, but when i click on the div itself the div closes up, and other "bug" is, that if i have 2 or more divs if i click on one link and click on other link the div's stays visible, how can i solve this? here is the cod

[jQuery] [HELP] DivMenu

2009-06-12 Thread Glazz
hi, i've a function that when i click on a link a div shows up, and it works nice, but when i click on the div itself the div closes up, and other "bug" is, that if i have 2 or more divs if i click on one link and click on other link the div's stays visible, how can i solve this? here is the cod

[jQuery] help me forToop tip

2009-06-10 Thread Nader dasuki
hello dears , how can i create tooltip or information ballon , and i controll it by set html links and data when user click on icon for example (?) will show this information ballon and user can close this informaiont ballon plz help me its urgent !! -- Eng. Nader Dasuqi Project Manager +966533

[jQuery] help for tooltip

2009-06-09 Thread Nader dasuki
hello dears , how can i make same as this tooltip : http://www.alriyadh.com/ see this page at the top , in the above - left side plz help me regards -- Eng. Nader Dasuqi Project Manager +9665339217533

[jQuery] help with QUnit

2009-06-08 Thread sarah
Hi! I am trying to get started with QUnit - as a beginning project I'm trying to set up unit test for use with the following function. I am having trouble figuring out where to get started - any help would be very valuable, thanks! -Sarah /* Copyright (c) 2008 Kean Loong Tan http://www.gimiti

[jQuery] Help preventing click

2009-06-05 Thread Dave Maharaj :: WidePixels.com
I have 6 links , each loads a form into its respective div. How can I disable the links if one of the 6 is clicked preventing a user from opening up 6 forms at once? I have $('a[class^="edit_"]').unbind('click'); which stops the click from working but once the form is submitted i now need to ena

[jQuery] HELP: FireFox page reload bug using jQuery for deferred loading (using html() function)

2009-06-05 Thread colnector (colnect.com)
Hi all, To enhance user experience on my site, I've moved a few page elements (well, the ads...) to the end of the page (in a hidden div) and when the page is loaded the content of such divs are copied to their appropriate location on the page. This makes the content load much faster and thus not

  1   2   3   4   >