Thank you so much, Adriana. With the information you've given me, I
have fixed the problem. I am so grateful.
Best,
Rory
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
$("form").validate(
{
rules: {
legal_status_comment: {
required: function(element) {
return $
("[name=legal_status]:checked").attr("id") == "other_radio";
}
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
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() {
>
>
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
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
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...
Sorry for the double post, just forgot to add the code.
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
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:
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
Easier yet, give your UL an ID then
$('#myID li a').click(function() {
$('#myID li a').removeClass("bg");
$(this).addClass("bg");
});
--Greg
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(){
>
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
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
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
That worked beautifully!!! Thanks so much for teh help.
Dave
BTW... They call me CAPTAIN OBVIOUS!!!
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
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
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,
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
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
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
>
>
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
>
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
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
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
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
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.
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();
}
});
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
>
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
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,
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
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()
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();
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(){
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
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
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
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
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
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
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
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 ,
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 ,
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,
> $(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');
>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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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?
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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.
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
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
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
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
.pin{
background:url('pin_org.png') no-repeat; height:24px; width:
24px;position:absolute;
}
.pin{
background:url('pin_org.png') no-repeat; height:24px; width:
24px;position:absolute;
}
Thanks alot it works!
$("#Content").rightClick( function(e) {
var x = e.pageX;
var y = e.pageY;
$("").insertAfter(this);
});
Thanks alot it works!
$("#Content").rightClick( function(e) {
var x = e.pageX;
var y = e.pageY;
$("").insertAfter(this);
});
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
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
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
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 - 100 of 369 matches
Mail list logo