[jQuery] Re: need help with simple jQuery problem

2010-01-22 Thread Rory Bernstein
Thank you so much, Adriana. With the information you've given me, I have fixed the problem. I am so grateful. Best, Rory

[jQuery] Re: need help with simple jQuery problem

2010-01-20 Thread Rory Bernstein
Hi Adriana, Adriana, I am honored that you wrote in to help me; it is, or course, your script I am trying to work with. I do not understand what you are asking me to do; can you please give more info/context? Are you saying that I am missing the lines of code you put in your response? If so, wher

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

2010-01-11 Thread Jules
$("form").validate( { rules: { legal_status_comment: { required: function(element) { return $ ("[name=legal_status]:checked").attr("id") == "other_radio"; }

[jQuery] Re: Need help with a simple problem?

2010-01-07 Thread Šime Vidas
The click method has only one argument - the funcion that is going to be executed on every mouseclick. Also, you can use the show and hide methods as shortcuts for manipulating the display property. The toggles method toggles the display property between the states "hide" and "show". $('#top-bar

Re: [jQuery] Re: Need help learning

2010-01-06 Thread Mark Tank
Thank you, you have help out so much On Jan 6, 2010, at 6:14 PM, Šime Vidas wrote: > If you want to manipulate with the DIV inside the $.get function, you > can declare a local variable and put the reference to DIV in it... > > (function($) { >$.fn.myPlugin = function() { > >

[jQuery] Re: Need help learning

2010-01-06 Thread Šime Vidas
If you want to manipulate with the DIV inside the $.get function, you can declare a local variable and put the reference to DIV in it... (function($) { $.fn.myPlugin = function() { this.each(function() { alert(this.id); var

[jQuery] Re: Need help learning

2010-01-06 Thread Šime Vidas
this refers to different objects depending on where we are in the code... (function($) { $.fn.myPlugin = function() { // here "this" refers to the jQuery object on which the myPlugin method was called upon this.each(function() { // here "this" refers to the matched elem

[jQuery] Re: Need jQuery expert to slightly modify plugin

2010-01-05 Thread MikeTheVike
The code on that link is for jCarousel and not jCarousel Lite. I'm sure they are similar, but since I'm not a javascript guy, I don't know how to make it work, any ideas? On Jan 4, 9:19 am, Liam Potter wrote: > http://groups.google.com/group/jquery-en/browse_thread/thread/f550b94...

[jQuery] Re: Need help with image slideshow effect

2009-12-18 Thread dec0y
Sorry for the double post, just forgot to add the code.

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

2009-12-14 Thread Ibatex
Thats perfect, I think the eq(0) is what I was missing on my earlier attempts Much thanks, Leonardo!! On Dec 14, 6:52 am, Leonardo K wrote: > function togglePassFail(radioName) { >     var buttonGrp = document.getElementsByName(radioName); >     var radioValue = $(buttonGrp).filter(':checked').v

[jQuery] Re: Need to get the index of current table row

2009-12-11 Thread MorningZ
The ".index()" function takes some getting used to, but it does work once it's fully understood what is going on with it... the selector should be the collection of DOM objects you are looking for and the value in the index() should be one of those selected-from-the-selector DOM objects Example:

[jQuery] Re: Need help with superfish dropdown menu

2009-12-11 Thread Yvan
I've made some progress on resolving this issue, and all I have left to fix is the following: > 2) When I mouseover the sublinks -- I'd like for the "Resources" link > text to remain white (instead of turning blue) > 4)  In IE -- the left edge of the subnav list doens't line up wih the > left e

[jQuery] Re: NEED HELP::siblings isssue in jquery

2009-12-10 Thread Greg Tarnoff
Easier yet, give your UL an ID then $('#myID li a').click(function() { $('#myID li a').removeClass("bg"); $(this).addClass("bg"); }); --Greg

[jQuery] Re: NEED HELP::siblings isssue in jquery

2009-12-10 Thread Scott Sauyet
On Dec 10, 1:56 am, Bideshi wrote: > 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. > [ ... ] >                 $("a").click(function(){ >

[jQuery] Re: Need help in jquery script for copying values

2009-12-04 Thread rose
Sorry to ask a silly question like this. I solved this . Here goes the modified script : $('#addEmployee').click(function(){ $.ajax({ url: 'searchEmployee.do?method=searchEmployee', type: 'GET', data: {employ

[jQuery] Re: Need to create 100% width layout.

2009-12-01 Thread Virgil Spruit
Not sure what behaviours you want to embed. But the following function is a solid base. var viewportwidth; var viewportheight; function viewportsizes(){ // the more standards compliant browsers (mozilla/netscape/opera/ IE7) use window.innerWidth and window.innerHeight if (typeof

[jQuery] Re: Need to create 100% width layout.

2009-12-01 Thread MorningZ
What does jQuery UI have to do with this?Use CSS to make your interface 100% width. On Dec 1, 3:48 am, Sachin wrote: > Hi There, > > I need to create an application UI using jQuery, it should be 100% > irrespective of the browser or user resolution. I am new to jQuery, > please help me w

[jQuery] Re: Need to hide a href title content, but still need it available in the DOM

2009-11-23 Thread Dave
That worked beautifully!!! Thanks so much for teh help. Dave BTW... They call me CAPTAIN OBVIOUS!!!

[jQuery] Re: Need a callback function to delay processing...

2009-09-23 Thread Rick Faircloth
ry-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Rick Faircloth Sent: Wednesday, September 23, 2009 12:07 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Need a callback function to delay processing... Hi, Mark, and thanks for the reply... > put them as > something li

[jQuery] Re: Need a callback function to delay processing...

2009-09-23 Thread Rick Faircloth
ny suggestions! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Mike McNally Sent: Wednesday, September 23, 2009 10:45 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Need a callback function to delay processing... Put the stu

[jQuery] Re: Need a callback function to delay processing...

2009-09-23 Thread Mike McNally
Put the stuff you want to have happen after the form loads either in the response page from the form submission, or else put them as something like an event handler on an element and have the form response include some code to trigger the event. If you submit stuff with the jQuery AJAX routines,

[jQuery] Re: Need some ideas for starting a recommendation widget

2009-08-24 Thread Justin
It seems to me the first step would be getting your data into your item list.Something like: Pizza Spaghetti Pastry Snails Once you know what your data is then you can code the hide/show part. In the about example you would have events on the user controls that show/hide items using a selecto

[jQuery] Re: need help with logic

2009-08-19 Thread Dhruva Sagar
It is of course possible, you have to simply redirect the user from the server to the right page. If in the the first scenario you have a page like 'search.php' and your form is submitting the data to it, and your doing the search on server side and displaying it on the same page, then in that case

[jQuery] Re: Need E-Book

2009-08-12 Thread sammahoney
These tutorials are a great way to get started: http://www.youtube.com/watch?v=Hk5oXFtYLwE&feature=related http://www.youtube.com/watch?v=J64Pmi_jEiQ&feature=related On Aug 12, 1:50 pm, naresh karankal wrote: > Sir, I beginner of J query, so I need complete e_book of j query. > > Thank You > >

[jQuery] Re: Need help with table sorter

2009-08-01 Thread Adrian Lynch
If you can't or don't want to add a table footer, you can pass the sorter a selector that excludes the last row. The last sorter I looked at didn't allow you to pass the selector in so I had to modify the source. On Jul 31, 10:08 pm, aquaone wrote: > http://www.w3schools.com/tags/tag_tfoot.asp >

[jQuery] Re: Need help with table sorter

2009-07-31 Thread aquaone
http://www.w3schools.com/tags/tag_tfoot.asp On Fri, Jul 31, 2009 at 07:36, Razor M wrote: > > 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 us

[jQuery] Re: Need to validate Multiple email IDs with Comma Seprated

2009-07-24 Thread Kuo Yang
With pleasure. My English is not so good,so I paste the code directly: //copied from http://www.webtoolkit.info/javascript-trim.html function trim(str, chars) { return ltrim(rtrim(str, chars), chars); } function ltrim(str, chars) { chars = chars || "\\s"; return str.replace(new RegEx

[jQuery] Re: Need to validate Multiple email IDs with Comma Seprated

2009-07-23 Thread Mohd.Tareq
Hi Kuo Yang, * * *Thanks for your reply.* *I am doing the same thing, but if i am entering any other charecter like ( _ | ) ( ] [ )* *instead of comma, so its considering as a string & after that not able to validate it.* * * *I am writing this kind of functions to validate my multiple email value

[jQuery] Re: Need to validate Multiple email IDs with Comma Seprated

2009-07-23 Thread Mohd.Tareq
Hi Kuo Yang, * * *Thanks for your reply.* *I am doing the same thing, but if i am entering any other charecter like ( _ | ) ( ] [ )* *instead of comma, so its considering as a string & after that not able to validate it.* * * *I am writing this kind of functions to validate my multiple email value

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

2009-07-23 Thread Jules
Opps, Sorry, didn't realise request and settings are not available on ajaxSend and ajaxStop. So, my proposed solution is not working. May be a dumber solution var isFaceBox = true; $(document).ready(function(){ $(document).ajaxSend(function(event){ if(!isFaceBox) { $('body > div.

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

2009-07-23 Thread Jules
Can't you check the settings.url? $(document).ready(function(){ $(document).ajaxSend(function(event, request, settings){ if(settings.url != 'faceboxurl') // replace faceboxurl with the real url { $('body > div.container').fadeTo('normal', 0.33); $('#loading').show(); } });

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

2009-07-23 Thread Rodrigo Tassinari
Anyone? On 20 jul, 12:34, Rodrigo Tassinari de Oliveira wrote: > 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 >

[jQuery] Re: Need to validate Multiple email IDs with Comma Seprated

2009-07-23 Thread Kuo Yang
You can split the Emails with the comma, and then validate them one by one. On Thu, Jul 23, 2009 at 9:49 PM, Mohd.Tareq wrote: > > Hi Guys, > > Can any one tell me validation ' *Email Validation for multiple emails > (comma separated)* ' for textarea. > > I am writing Regular expression but not

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

2009-07-04 Thread Erik R. Peterson
Where am I placing the link for each tag? Are the link identified in the JS or the html? E On Jul 4, 2009, at 10:18 AM, Charlie wrote: I gave you slideUp twice...oops...bad copy paste Erik R. Peterson wrote: Thanks Charlie, I'll put it in now. thanks. E On Jul 4, 2009, at 9:56 AM,

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

2009-07-04 Thread Charlie
I gave you slideUp twice...oops...bad copy paste Erik R. Peterson wrote: Thanks Charlie, I'll put it in now.  thanks. E On Jul 4, 2009, at 9:56 AM, Charlie wrote: could shorten this all up and make it accessible for _javascript_ disabled by putting the

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

2009-07-04 Thread Erik R. Peterson
Thanks Charlie, I'll put it in now. thanks. E On Jul 4, 2009, at 9:56 AM, Charlie wrote: could shorten this all up and make it accessible for javascript disabled by putting the url into the href of your links. Haven't looked at plugin but since you're just loading html will use load()

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

2009-07-04 Thread Charlie
could shorten this all up and make it accessible for _javascript_ disabled by putting the url into the href of your links. Haven't looked at plugin but since you're just loading html will use load() in jQuery core: hideLoading(); $("#cs_links a").click(function () {        showLoading();   

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

2009-07-04 Thread Erik R. Peterson
Can;t get it to work correctly. Here is my existing code: $(document).ready(function(){ //References var sections = $("#cs_links a"); var loading = $("#loading"); var content = $("#cst_wrap_mid"); //Manage click events sections.click(function(){

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

2009-07-04 Thread Erik R. Peterson
Works great... Would you be able to show me how to make the links change via css after selected? Erik On Jul 4, 2009, at 6:40 AM, MOZ wrote: Hi, on your page: http://www.enaturalskin.com/needhelp.htm each time the window scroll to the top because of anchor #, use preventDefault(); to

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

2009-07-04 Thread MOZ
Hi, on your page: http://www.enaturalskin.com/needhelp.htm each time the window scroll to the top because of anchor #, use preventDefault(); to avoid this, just a suggestion. Also see the improved version: http://yensdesign.com/2009/06/safe-ajax-links-using-jquery/ This trick will make your web

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

2009-07-03 Thread Erik R. Peterson
Hi buddy! I'm undecided on the final buttons and graphics, but thanks to your help I got the script down. I actually fixed my own problem after posted this last email. Have a great weekend. Erik On Jul 3, 2009, at 5:14 PM, Cesar Sanz wrote: Hello. I see you succed retrieving data u

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

2009-07-03 Thread Cesar Sanz
Hello. I see you succed retrieving data using ajax, Which is the problem? - Original Message - From: "Erik R. Peterson" To: Sent: Friday, July 03, 2009 2:48 PM Subject: [jQuery] Need help on How to load content via AJAX in jQuery I found this script: http://yensdesign.com/2008

[jQuery] Re: Need jQuery/Ajax/jsonp HELP

2009-07-01 Thread Karl Swedberg
On Jul 1, 2009, at 6:15 AM, skywalk3r wrote: Hi, I'm getting sick trying to solve this problem: I have a web page A that loads another page B using an iframe (or an object tag), the B page is an external page (it's not on my server) and contains a form. I want to be able to auto fill the for

[jQuery] Re: need a hand with it, show/hide stuff

2009-07-01 Thread Charlie
online loading gif generator for your image, multiple styles , set your own colors http://www.ajaxload.info/ Liam Potter wrote: on the function that initiates the ajax call, insert the spinning gif image. $("div").append(''); and on the success callback on the ajax function, rem

[jQuery] Re: need a hand with it, show/hide stuff

2009-07-01 Thread Liam Potter
on the function that initiates the ajax call, insert the spinning gif image. $("div").append('alt="Loading..." class="loading" />'); and on the success callback on the ajax function, remove the image $("div img.loading").remove(); How you add and remove the image is up to you, but this is th

[jQuery] Re: Need help in Login

2009-06-25 Thread Lee R Lemon III
http://www.reynoldsftw.com/2009/03/using-jquery-and-ajax-to-create-php-sessions/ important set your session up before anything else on the page or php errors On Jun 24, 3:50 am, bharani kumar wrote: > Hi , > Am very much confusion in php login session tracking , > > This is my requirement ,

[jQuery] Re: Need help in Login funcationality jquery

2009-06-24 Thread bharani kumar
Hi all , Its very urgent one , Can some one tell me using jquery login form, On Wed, Jun 24, 2009 at 2:20 PM, bharani kumar < bharanikumariyer...@gmail.com> wrote: > Hi , > Am very much confusion in php login session tracking , > > This is my requirement , > > Am doing travel booking portal ,

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

2009-06-16 Thread Logictrap
Thanks for the tip and also the cycle plugin - It works great! -- Forwarded message -- From: Mike Alsup Date: Jun 16, 4:17 pm Subject: Need help cuz I don't get 'this' To: jQuery (English) > $(this).find('img').attr('src'); jQuery selectors accept a 2nd argument for context,

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

2009-06-16 Thread Mike Alsup
> $(this).find('img').attr('src'); jQuery selectors accept a 2nd argument for context, which makes this a bit more readable, imo: var src = $('img',this).attr('src');

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

2009-06-16 Thread Logictrap
>From a different forum I got this which works: $(this).find('img').attr('src'); On Jun 16, 11:18 am, Logictrap wrote: > I'm using the jqery cycle plugin with an onAfter & OnBefore function. > > These functions process the current div as 'this' - what I sent was > the code in my div that is get

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

2009-06-16 Thread Logictrap
I'm using the jqery cycle plugin with an onAfter & OnBefore function. These functions process the current div as 'this' - what I sent was the code in my div that is getting passed as 'this'. I can see that using children is the way to get the attribute I want, but I don't quite understand how to

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

2009-06-16 Thread MorningZ
I don't think you understood what code to show what you need to show is what is wrapped around your initial post's code so that it will be easier to help you understand "this" On Jun 16, 8:18 am, Logictrap wrote: > Thank you that worked!!! > > I think I may understand how to use children if yo

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

2009-06-16 Thread Logictrap
Thank you that worked!!! I think I may understand how to use children if you could also show how to get the img src attribute when 'this' contains: http://www.test.org"; target="_blank">Test Logo

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

2009-06-15 Thread Logictrap
Thank you that worked!!! I think I may understand how to use children if you could also show how to get the img src attrbitute when 'this' contains: http://www.test.org"; target="_blank">Test Logo On Jun 14, 9:25 am, Erik Beeson wrote: > Like MorningZ said, m

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

2009-06-14 Thread Erik Beeson
Like MorningZ said, more info would be helpful, but this should work: $('#output').html('SRC: ' + $(this).children('img').attr('src')); --Erik On Sun, Jun 14, 2009 at 7:02 AM, Logictrap wrote: > > I need to get the src attribute of an img element that is a sub- > element of 'this' but I can't

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

2009-06-14 Thread MorningZ
Can you show more code around the ".html" statement? this will help others better help you understand what "this" is in that context On Jun 14, 10:02 am, Logictrap wrote: > 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 traver

[jQuery] Re: Need to move selection from one box to another box

2009-06-10 Thread Pierre Bellan
Nowadays, the web is "2.0", so you can use a drag and drop system, which is more ergonomic for your users. Check the jquery-ui project ( http://jqueryui.com/ ), there are some example that correspond exactly to your problem. Pierre 2009/6/10 webspee...@gmail.com > > Hey all. > > I'm looking t

[jQuery] Re: Need help with DIV manipulation

2009-06-03 Thread Gustavo Salomé
Try this: Remove the href params, instead change the loadContent param to an id or class, like this: then change your javascript to: $(function(){ $('li a').click(function(){ id=$(this).attr('id'); $("#content").load("pages.php?o="+id+""); return false; }); }); 2009/6/3 nanook72

[jQuery] Re: Need help with DIV manipulation

2009-06-03 Thread nanook72
bump On Jun 3, 6:49 am, nanook72 wrote: > 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

[jQuery] Re: Need help optimizing/analyzing jquery / json

2009-05-27 Thread deltaf
I didn't look too closely at the files, but I suggest separating your data from the executing code. Use JSON to create a series of data objects and use a different script to run through those objects and build your page based on search criteria, etc. >From what I saw in cruise_json.js, there's a

[jQuery] Re: Need "QuickLinks" jQuery functionality as seen on NorthPoint.org at top of page

2009-05-18 Thread Mohd.Tareq
Hi, This is made by flash.Try it with Flash hope flash can give you same solution. Or If you wana do with jquery then you have to use carousel plugin of jquery. see this example : http://www.5bosses.com/examples/agile_carousel/jqueryui_examp

[jQuery] Re: need some suggestion about adding active class for one page link

2009-05-04 Thread jQnoob
thanks so much for the reply! I was able to apply the class but was unable to figure out how to remove the existing active class on other links. I'll try this out. Again, thanks so much! On May 4, 7:48 am, Nathan wrote: > If I understand you both correctly. > > You'll need to add a class of a

[jQuery] Re: need some suggestion about adding active class for one page link

2009-05-04 Thread Nathan
If I understand you both correctly. You'll need to add a class of active to the clicked nav item and remove the class active from the nav item the was previously active. You can do this with: $(function(){ $('#nav li a').click(function(){ $('#nav li a').removeClass('ac

[jQuery] Re: need some suggestion about adding active class for one page link

2009-05-03 Thread jQnoob
I'm also having this problem. I'm using localscroll on a one-page site and need to add an active state to the navigation items. the problem is, it doesn't seem to work with local anchors. Not sure if it matters, but I also have sticky header and footer. Here's some example code: HTML: logo

[jQuery] Re: need help with jqGrid

2009-04-17 Thread Led
thanks tony, but is not loading the results ... and no error On 17 Abr, 15:36, Tony wrote: > Hello, > The version of jquery  1.3.1 that you use is not compatible with > jqGrid version 3.4 > Download the latest 3.4.3 version of jqGrid > > On Apr 17, 2:51 pm, Led wrote: > > > > > tony , check tha

[jQuery] Re: need help with jqGrid

2009-04-17 Thread Tony
Hello, The version of jquery 1.3.1 that you use is not compatible with jqGrid version 3.4 Download the latest 3.4.3 version of jqGrid On Apr 17, 2:51 pm, Led wrote: > tony , check that is not that. > > On 17 Abr, 11:46, Tony wrote: > > > Hello, > > Already replayed. Please check your code - yo

[jQuery] Re: need help with jqGrid

2009-04-17 Thread Led
tony , check that is not that. On 17 Abr, 11:46, Tony wrote: > Hello, > Already replayed. Please check your code - you have a unneeded coma in > colModel > Regards > Tony > > On Apr 17, 1:33 pm, led wrote: > > > > > I' m trying to use the jquery jqGrid plugin but i can't see it working > > with

[jQuery] Re: need help with jqGrid

2009-04-17 Thread Tony
Hello, Already replayed. Please check your code - you have a unneeded coma in colModel Regards Tony On Apr 17, 1:33 pm, led wrote: > 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 >     >       1

[jQuery] Re: Need a jQuery 'equal height columns' script

2009-04-03 Thread sammahoney
Apparently, this is how the script I have works - I guess it's possible to do the same thing with jQuery? The script accepts a list of elements, then creates an array of their heights + top position. It then needs to sort that array numerically using the sortNumeric() function and then will set t

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

2009-04-02 Thread MorningZ
don't over complicate things, the selection is a simple string, treat it like any other string concatenation done in JavaScript $("div#mainnav .mainnav[alt='" + selectid + "']") thats $ ( double-quote div# alt = single-quote double-quote + selectid + double-quote single- quote ] double-quote

[jQuery] Re: Need a jQuery 'equal height columns' script

2009-04-02 Thread sammahoney
Well, I found the original, so here it is - http://v3.thewatchmakerproject.com/journal/354/equalising-box-baselines-with-javascript Anyone know of anything similar for jQuery?

[jQuery] Re: Need a jQuery 'equal height columns' script

2009-04-02 Thread Jack Killpatrick
Ah, I see. Sorry, I hadn't looked at the jsbin link. I don't know of a plugin to do something like that, but if your outer container's height is specified you could use jquery's .outerHeight({margin:true}) to get the height of the DOM nodes above the last one, then subtract that from the contai

[jQuery] Re: Need a jQuery 'equal height columns' script

2009-04-02 Thread sammahoney
Here's how my example looks without any script, just so you can see. I need to go from this - http://jsbin.com/eguze - to this - http://jsbin.com/ofehi On Apr 2, 7:11 pm, sammahoney wrote: > Thanks for the reply, but unfortunately neither of them are what I > need - I've already tested both. The

[jQuery] Re: Need a jQuery 'equal height columns' script

2009-04-02 Thread sammahoney
Thanks for the reply, but unfortunately neither of them are what I need - I've already tested both. They both only work if the elements to be equalized are starting on the same row. These two scripts work by basically finding the height of the tallest column, then applying it to the shorter column

[jQuery] Re: Need a jQuery 'equal height columns' script

2009-04-02 Thread Jack Killpatrick
http://www.cssnewbie.com/equalheights-jquery-plugin/ http://www.tomdeater.com/jquery/equalize_columns/ - Jack sammahoney wrote: Hi All I have an old script for equalizing columns. Can't remember where I got it, but I need something similar in jQuery - I've found a few so far, but they all eq

[jQuery] Re: Need to get value of table cell

2009-03-26 Thread James
Could you post some code so we know what we're working with? How does your table and row IDs look like? Is there a pattern? The code we provide can be as simple as: var someIDNum = 1235412; $("#row"+someIDNum).text(); For a row with id="row1235412" On Mar 26, 3:11 am, Webspeeder wrote: > I hav

[jQuery] Re: Need to get value of table cell

2009-03-26 Thread Webspeeder
I have the table ID as well as the row ID. On Mar 25, 6:32 pm, Josh Powell wrote: > What unique identifier do these cells have? > > Do the cells have id's? $('#theid').  Do the rows have ids? $('#theid> > td').get(1) will get you the second cell of the row with an id of > > 'theid', does the ta

[jQuery] Re: Need to get value of table cell

2009-03-25 Thread Josh Powell
What unique identifier do these cells have? Do the cells have id's? $('#theid'). Do the rows have ids? $('#theid > td').get(1) will get you the second cell of the row with an id of 'theid', does the table have an id? $('#tableid > tbody > tr' > td) will return all of the tds in that table inside

[jQuery] Re: Need some help with a image opacity thingy.

2009-03-25 Thread Karl Swedberg
for IE6, explicitly setting a background color on the element should do the trick. IE7 is a bit more complicated. You might want to have a look at Mike Alsup's Fade Test page and view source: http://malsup.com/jquery/fadetest.html --Karl Karl Swedberg www.englishrules.com www.l

[jQuery] Re: Need some help with a image opacity thingy.

2009-03-25 Thread MindTooth
Thank you so much. That fixed it completely. Much appreciated. Just asking, could you provide some info regarding IE compatible. Since now my PNGs has rough edges. Looks like som chainsaw blades. Birger :) On Mar 25, 3:52 pm, Karl Swedberg wrote: > Hi there, > > You could use the hoverIntent p

[jQuery] Re: Need some help with a image opacity thingy.

2009-03-25 Thread MindTooth
Thank you so much. That fixed it completely. Just asking, could you provide some info regarding IE compatible. Since now my PNGs has rough edges. Looks life som chaiw saw blades. Birger :) On Mar 25, 3:52 pm, Karl Swedberg wrote: > Hi there, > > You could use the hoverIntent plugin or update t

[jQuery] Re: Need some help with a image opacity thingy.

2009-03-25 Thread Karl Swedberg
Hi there, You could use the hoverIntent plugin or update the script with suggestions posted here: http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 25, 2009, at 8:00 AM, Mi

[jQuery] Re: Need example of dynamic validation

2009-03-20 Thread Loony2nz
ke to know if it's working for you... > > Rick > > > -Original Message- > > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf OfLoony2nz > > Sent: Saturday, March 14, 2009 6:08 PM > > To: jQuery (English) > > Subject: [j

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

2009-03-18 Thread AnatolyG
hey, http://groups.google.com/group/jquery-en/browse_thread/thread/f6cf0516dacdab18 $(xml).find('row').each(function(index, obj){ document.write($(obj).html() + ""); }); this would work w/ out the CDATA. On Mar 18, 3:27 pm, slgm wrote: > hi, > > I've looked through at awfaul lot of posts/ar

[jQuery] Re: Need example of dynamic validation

2009-03-15 Thread JT
Here's an example from a site I worked on. I'll explain the code first. This site has a form with required fields for First Name, Last Name and Email by default. If one clicks on the Send a hard copy check box, the form expands, revealing the address fields. These are now required. The rules for

[jQuery] Re: Need example of dynamic validation

2009-03-14 Thread Rick Faircloth
08 PM > To: jQuery (English) > Subject: [jQuery] Re: Need example of dynamic validation > > > I think I got it.. can someone validate this for me..see if I'm on the > right track? > > rules: { > regType: {required: true}, > first_name: {required:true}, > l

[jQuery] Re: Need example of dynamic validation

2009-03-14 Thread Loony2nz
I think I got it.. can someone validate this for me..see if I'm on the right track? rules: { regType: {required: true}, first_name: {required:true}, last_name: {required:true}, individual_state: { required: function(element) { return $('input[name=regType]:checked').val() == 'Indi

[jQuery] Re: Need Help with changing css on an object

2009-03-08 Thread zeckdude
I will definitely add sprites though, I forgot to mention that. Thanks for that suggestion. -- View this message in context: http://www.nabble.com/Need-Help-with-changing-css-on-an-object-tp22394562s27240p22405565.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Re: Need Help with changing css on an object

2009-03-08 Thread zeckdude
phpbutcher wrote: > > Charlie is absolutely right. You can simplify it by using the > css :hover to do your rollover states. You still however need to do > something on top of that to handle the current problem you're having > with it keeping the state change when a user clicks on > one of the

[jQuery] Re: Need Help with changing css on an object

2009-03-08 Thread junk.mail...@gmail.com
Chris Charlie is absolutely right. You can simplify it by using the css :hover to do your rollover states. You still however need to do something on top of that to handle the current problem you're having with it keeping the state change when a user clicks on one of the nav elements. That's reall

[jQuery] Re: Need Help with changing css on an object

2009-03-08 Thread Charlie Tomlinson
good case of trying to add a bunch of script when simple css works. Spriting the menu images into one (with or without the text included on each part of image), adding a  :hover in css  avoids an unnecessary server request for another image and works if scripting disabled junk.mail...@gmai

[jQuery] Re: Need Help with changing css on an object

2009-03-08 Thread junk.mail...@gmail.com
Hi Chris My suggestion to your problem will involve a few changes to your structure, but I don't think they should be too bad for you to pull off. Since the texts in your nav don't change on rollover, I would make them a separate image all together. Then you could make just 2 different backgroun

[jQuery] Re: Need to insert an element in DIV at position X Y

2009-03-05 Thread choesang
.pin{ background:url('pin_org.png') no-repeat; height:24px; width: 24px;position:absolute; }

[jQuery] Re: Need to insert an element in DIV at position X Y

2009-03-05 Thread choesang
.pin{ background:url('pin_org.png') no-repeat; height:24px; width: 24px;position:absolute; }

[jQuery] Re: Need to insert an element in DIV at position X Y

2009-03-05 Thread choesang
Thanks alot it works! $("#Content").rightClick( function(e) { var x = e.pageX; var y = e.pageY; $("").insertAfter(this); });

[jQuery] Re: Need to insert an element in DIV at position X Y

2009-03-05 Thread choesang
Thanks alot it works! $("#Content").rightClick( function(e) { var x = e.pageX; var y = e.pageY; $("").insertAfter(this); });

[jQuery] Re: Need to insert an element in DIV at position X Y

2009-03-05 Thread brian
On Thu, Mar 5, 2009 at 11:01 AM, ricardobeat wrote: > > Insert anywhere and use position:absolute. Would the text re-flow around the div, though? I'd imagine it wouldn't. If not, I suppose you could get the insertion point within the div's text, using textrange, then replace it with a copy that

[jQuery] Re: Need to insert an element in DIV at position X Y

2009-03-05 Thread ricardobeat
Insert anywhere and use position:absolute. On Mar 5, 8:03 am, choesang wrote: > Hi! > > I am trying to create a webpage where users can insert a pin (div) in > between the text using context menu. > My problem is that i do not know how to insert at the exact position. > Using Dom's I can arrive

[jQuery] Re: Need a help to manipulate table that multiple rowspan

2009-02-24 Thread jQuery Lover
Oops, sorry you have two td's in your first row... $('tr:last td').attr('rowspan', $('tr:first td:first').attr('rowspan')); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 7:15 PM, jQuery Lover wrote: > To get the first row's row span: > > $('tr:f

[jQuery] Re: Need a help to manipulate table that multiple rowspan

2009-02-24 Thread jQuery Lover
To get the first row's row span: $('tr:first td').attr('rowspan') To set it to the last row's td: $('tr:last td').attr('rowspan', $('tr:first td').attr('rowspan')); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Tue, Feb 24, 2009 at 2:53 PM, Peter wrote: > > Hi All

  1   2   3   4   >