Weird, the 'validate' didn't show in my subject, maybe it will now.
Well, I figured out a solution, and it works pretty well :D
var email_ajax_data;
$.validator.addClassRules({
email: {
required: true,
email: true,
I am using the jQuery Validator plugin with ASMX Web services. I would
like not to have to use HTTP GET (for security reasons). I can
successfully use POST when directly using $.ajax, but when it comes to
the Validator plugin, I'm having a difficult time setting the
remote.data property in the rul
Hey Tiago,
This will work:
$(document).ready(function() {
$("a").click(function() {
$(".arrow", this).addClass("testing");
});
});
it adds a click event to your a tags. When a a tag is clicked on it finds
the .arrow class within the a tag context and adds the cla
I'm sorry in my previous reply replace the words portrait with the word
portfolio ... sorry.
Ralph
On Fri, Apr 10, 2009 at 12:17 AM, Ralph Whitbeck
wrote:
> Hey Luke,
>
> You have two ID's with the same ID "portrait" You can only have one ID
> named portrait on the page...name the other portrai
Hey Luke,
You have two ID's with the same ID "portrait" You can only have one ID
named portrait on the page...name the other portrait2 or something.
In your jQuery code change $("#portrait")... to $(".pics")...
Both will then work.
Although there seems to be other issues both cycles now cycle.
I'm new to jQuery and I'm trying to solve this little problem here.
Imagine that I have the following code:
Music list
Album list
Song list
So now when I click one of the links I want to be able to change the
class of the span that contains the arrow class.
How can I know which lin
Hi,
First of i'm sorry if the answer to this is somewhere on here already
but i've been staring at the screen for hours trying fix this and
haven't found exactly what i need. Also i should warn you i know next
to nothing about jquery or javascript or any other internet magic past
HTML and CSS.
I love the idea of creating the non-page-refreshing apps,
but, as someone mentioned earlier, even a relatively simple
app just start to overflow with code and it becomes difficult
to keep up with what is doing what and when.
Someone mentioned earlier, that instead of putting all their
js code on
Hi jwizard,
i think we must change code of Thickbox!
I must do since i can not google a solution!
Did you do that? if you did, could you share it to me?
If you didn't, i will do it share to you after completed!
2009/4/9 Vincent Nguyen
> Does anyone know how to do this?
> I'm getting stuck with
Does anyone know how to do this?
I'm getting stuck with this, too!
2009/4/9 Jim D
>
> Hi. How do you deal when thickbox is displaying itself bigger then
> browser size and it does not show scroll bars, so there is no way of
> getting to the last sentences display in Thickbox?
That's a path (storing variables for later use) that I started
venturing down when I became aware of global js variables. I thought,
now that's a lot simpler than having to make sure that some record
ID is always passed between one function and another.
But alas, my goal was to try to use global
Since the tablsorter rewrites the order of the tags on the DOM,
then it makes total sense that ".each" will return the rows in the
order the appear on the screen
On Apr 9, 10:28 pm, "james.kirin40" wrote:
> Hi everyone,
>
> Simple question: if 'table' is a table on which the excellent
> tableso
I assume the idea was to store the variable for later use, not how to
trigger a callback.
There's a number of situations I use fairly often which need me to
store a variable in an accessible place, but not utilize it until
later.
On Apr 9, 10:19 pm, "Michael Geary" wrote:
> That's perfect, Rick
Hi everyone,
Simple question: if 'table' is a table on which the excellent
tablesorter plugin is active, can I rely on the following statement
$("#table").each( /* function goes here*/);
iterating over the rows of the table in their *current* order? (ie,
even if the user has resorted the table?
That's perfect, Rick, it's exactly the way I would have coded it.
Hang in there on this client-side stuff! It will all continue to become more
clear as you work with it.
I have some sympathy for what you're going through with it. As more of a
front-end guy, it happens to me every time I tackle b
Here's a method that I'm using to pass data from
an ajax response to another function: (I'm starting
with the success: section of an ajax call)
success: function(response) {
if( response.MESSAGE == 'Success' )
{ populateStoryTable(response); }
This worked - thank you for your help!
-dave
On Apr 7, 7:40 pm, Jonathan wrote:
> If you can't figure out a better way you can always do a setTimeout in
> the document.ready to call a function after a set delay to poll the
> document.title again.
>
> check_title = function() {
> alert(documen
There's something missing in each of these solutions.
What about the code that will use this variable: How does that code know
when the variable is ready to use?
That code could check to see if the variable is null, but what does it do
then? Try again later? How much later?
What's more likely t
Aha, but won't work so well with JSON response, right?
I do check XHR in my PHP script and I thought it would work doing
something like this:
$xhr=$_SERVER['HTTP_X_REQUESTED_WITH']=='XMLHttpRequest';
if(!$xhr)
{
print("".$json."");
}
else
{
print($json);
}
That way I thought that if I
I put together a pretty basic DOMBuilder tool for this purpose, called
HSJN (HTML Snippet Javascript Notation). You can view/get the source
here: http://code.google.com/p/hsjn
It gives you the ability to specify jQuery chains within it's syntax,
and will parse it out into dom nodes you can insert
As long as you specify the daa type as "html", it should work
automatically.
>From the docs:
dataTypeString Default: Intelligent Guess (xml or html)
The type of data that you're expecting back from the server. If none
is specified, jQuery will intelligently pass either responseXML or
re
Well, you've got two basic options. You can do a straightforward
global variable like Hector suggested, or you can create and use a
custom storage object in the jQuery namespace. Try adding to your
code:
$.__customStorage = {};
$.get({
url: 'some.page.php',
complete: function(data){
$._
Hey...
I am using ColdFusion as well on the FuseBox Framework.
I have somewhat of a slick way to handle the js resources, it was
great at first but the more screen/interfaces I have the more
difficult it becomes to manage the js. I basically have a .cfm page
with html and dynamic data with none
Hi. How do you deal when thickbox is displaying itself bigger then
browser size and it does not show scroll bars, so there is no way of
getting to the last sentences display in Thickbox?
Hi there Ian,
So sorry about that problem. I believe I've fixed it in a version I've
had up on Github for a couple weeks. Just put together a new release
for it here:
http://plugins.jquery.com/node/7526
Please give that one a try and let me know if you still run into
problems
--Karl
_
Solved 1 and 2 just not the third. Anyway to detected duplicates only?
Everything I found on the net only removes duplicates.
$.validator.addMethod('keywords', function(value, element) {
var valid = true;
var valid = (value.length > 0);
var message = $(element);
if
Something like this might work:
var ajaxResponse;
$.ajax({
url: 'ajax.php',
complete: function(response) {
ajaxResponse = response;
}
});
-Hector
On Thu, Apr 9, 2009 at 3:44 PM, Nic Hubbard wrote:
>
> I have an $.ajax() call that I am using to GET some text from a page
> o
I have an $.ajax() call that I am using to GET some text from a page
on my site. I have put it in a variable with the success function.
How can I move that var up and out of the $.ajax function so I can use
it in other parts of my script?
Thanks.
> I have a image edit form where the user can upload a new image and/or
> edit image information such as title, description etc. Since I use the
> jQuery Forms plugin for most of my other forms I wanted to use it here
> as well, but last night I encountered a little problem...
>
> I use JSON for t
I have a image edit form where the user can upload a new image and/or
edit image information such as title, description etc. Since I use the
jQuery Forms plugin for most of my other forms I wanted to use it here
as well, but last night I encountered a little problem...
I use JSON for the return d
Hi all,
I want to add the ability to play sound on my web site without going
to a new page. is IE dependent and will not hold accross all
browsers. I downloaded the jquery.media.js and the jquery.metadata.js
and included the imports:
I then included the followin
Ah, thank you! Not sure what I was thinking.
On Apr 9, 3:04 pm, mkmanning wrote:
> Try alert( typeof(link_path) ) and you'll see it's a function. Try
> link_path.toString() and then split it.
>
> On Apr 9, 2:54 pm, Nic Hubbard wrote:
>
> > I am getting the attribute of an image on a page. It
I was wondering if JQuery has anything builtin to find an element from
the payload of an ajax call, and eval() the contents of it? I have
some cases where I will be returning javascript with HTML and I would
like to be able to just execute it
Thomas Creutz schrieb:
> CaptainABrad schrieb:
>> Stated simply, is there a way to either:
>> 1) Click a link on a page with jQuery, or
>> 2) Open a link in a new tab.
>
> 2: window.open and target "_new" should work
>
> http://www.mydigitallife.info/2006/10/08/launch-and-open-links-in-new-window
CaptainABrad schrieb:
> Stated simply, is there a way to either:
> 1) Click a link on a page with jQuery, or
> 2) Open a link in a new tab.
2: window.open and target "_new" should work
http://www.mydigitallife.info/2006/10/08/launch-and-open-links-in-new-window-or-tab-with-_blank-or-_new-as-targe
Try alert( typeof(link_path) ) and you'll see it's a function. Try
link_path.toString() and then split it.
On Apr 9, 2:54 pm, Nic Hubbard wrote:
> I am getting the attribute of an image on a page. It is the onclick
> attribute, but I need some text from the onclick function. (Sounds
> strange,
in js file
$('a.ToggleOpen').live("click",function(){
var searchhtmlid = $(this).attr('rel');
var filename = String($(this).attr('href').split("?",1));
var myparams = getparams($(this).attr('href'));
myparams.pop(myparams);
Since you're not using the class for styling, but indexing, why not
just use the natural index of the div in its container, or from the
jQuery object itself?
$('.ngg-gallery-thumbnail-box') is an array-like object, so you can
iterate over it, or access its members by index number, such as $
('.ng
I am getting the attribute of an image on a page. It is the onclick
attribute, but I need some text from the onclick function. (Sounds
strange, but I do). Using the following works totally fine:
var link_path = $(html).find("img[alt='Show in Asset Map']").attr
('onclick');
alert(link_path);
>F
Hi
My site is running slow(well especially the one page). On this one
page I got like 700kb worth of jquery plugins + my own jquery stuff.
So I am looking on how to make it faster. I am using as much of mini
versions of jquery as I could find so now I am looking into zipping
it.
I hear this mak
Hello again,
scrolling works now - I copyied the example over it again.
But still initially opnly one image is loaded in FF.
Greetings
Daniel Khan
Main store schrieb:
> I have a bug only on Firefox (IE and Safari OK),
> the carousel is here http://www.main-store.fr .
>
> You'll see the bottom of my page is too long.
> I have tried to modify the CSS with some Height measurements but
> nothing happen..
hi.. just remove the height from the bo
That's the META tag I have in there now. Should I change it?
Okay, my bad here.
Thanks to the one-on-one help of one of the great members here, I was able
to find the problem.
It wasn't the software, it was the hardware.
There was something odd going on with the development PC I was using to run
the test. Not only was my sort running very slow, so were
I am having some strange behavior with the fadeOut function. I asked
about it on StackOverflow. If you want, you can see the discussion at
http://stackoverflow.com/questions/735292/strange-behavior-when-using-jquery-fadeout-function-on-element-with-floated-eleme
. Someone on there mentioned that t
Can you use an ordered list? elements are block level just like divs.
-Hector
On Thu, Apr 9, 2009 at 1:46 PM, Eric Garside wrote:
>
> What's the advantage of assigning the identifier to the class? Like,
> how are you using it once you create the classes. I'm assuming there's
> an easier soluti
What's the advantage of assigning the identifier to the class? Like,
how are you using it once you create the classes. I'm assuming there's
an easier solution, especially if you're doing it dynamically.
On Apr 9, 2:54 pm, Brain Lava wrote:
> Thanks Ralph! I'll give that a try :)
>
> On Apr 9, 1
I made a more general test case, and I'm finding it is necessary for
me to unbind events within a given plugin in order for it to go away
in IE7. I thought empty and remove were supposed to unbind stuff for
me?
Here is my test case:
(function($){
$.fn.myPlugin = function(options)
try using window.open, its not jquery, just javascript, but you use it
to open new windows
On Apr 9, 10:07 am, CaptainABrad wrote:
> http://abrad45.com/sites/beta/
>
> I have this almost working. When you drop the icons on the iMac
> Screen, the pages are supposed to load in a new tab. I was doi
"There may be a bit of Apples and Oranges here"
For sure.. that link is doing a full blown form post to the server
(just pull up Firebug's "Net" panel to see).. i wouldn't compare
anything the two do between each other
I've been using tablesorter for a good year now, and i do everything i
c
hi,
I was wondering if anyone has used or know the link to jQuery carousel
which shows 3 vidoes at a time with ofcourse next & pre button and
message something like this: 'Showing 3 of 12'
Thanks for your help.
Using: http://sorgalla.com/projects/jcarousel/examples/static_controls.html
I would like to have a control bar that shows dots instead of page
numbers, etc. the difference being that if you have 9 items and you
show 3 at a time, you should have 3 dots. A dot would represent a page
and not one ima
I took a look at your code and I'm still on quite sure what
you want the end result to be.
What will the select (and any other HTML) look like when it
comes out the way you want it to?
Just type out the end result here and then we can backtrack
and see how to get there.
Rick
-Original Mess
Ok I resolved the "cannot assign to a function result" problem by
putting the value assignment into a "function(){}":
48 $("td.mychkbox").each(
49function(){
50 $(this).bind(
51"mouseover",
52function(){
53 if (gCheckedValue != null){
54var eccomi =
Thanks for the response -- I may need to do that.
I'm curious if anyone else has input on the speed of Tablesorter, however.
I've seen other solutions that can sort a large table quickly. For example
http://dynamictable.com/demos/ Dynamic Table Demo handles 1,000 rows in
about 1 second. T
He's trying to come up with a way to increment that select options
by one...I haven't had time to look at this code to understand thoroughly.
Rick
-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
Behalf Of mattimus5...@gmail.com
Sent: Thursday, A
Bryan,
As MorningZ pointed out, it's usually not the actual sorting that's
slow--it's the redrawing. DOM manipulations of elements is
notoriously slow.
-Dan
On Thu, Apr 9, 2009 at 3:36 PM, MorningZ wrote:
>
> I'd look at doing some server side sorting if you are looking for
> speed... it's a
Ok I see your code from the above post now.
var reqData = {
$('select.litqty').each(
$(this).attr('name') : $(this).val();
);
}
This would get the name and value of each select.litqty
Is this what you are trying to achieve??
On Apr 9,
I continued this thread in a new thread:
http://groups.google.com/group/jquery-en/browse_thread/thread/956e72c4e071a3de
On 9 Apr, 04:31, Lwangaman wrote:
> Ok now that that has been straightened out, here's my full endeavour:
>
> I'm trying to translate into jquery a useful functionality that I
You are just trying to get the value of the select box and only the
select box???
So you have something like
Book 1 ???
Book 2
Book 3
Book 4
What do you need reqData to look like?
Does anyone have a suggestion about multi field validations? Is this
even something the plugin has designed for yet?
I'd look at doing some server side sorting if you are looking for
speed... it's a lot of work for the plugin to sort the client side
data and then redraw 400 rows of data
On Apr 9, 3:09 pm, csi95 wrote:
> Hi folks,
>
> I've just started using tablesorter for one of my projects, and overall I
Hi Everyone,
I need Datagrid Live Edit for php. I search on google but but not get
any good.
Please tell me good one.
Advance Thanks
Hi folks,
I've just started using tablesorter for one of my projects, and overall I
love it. Does just what I need.
The one issue I've come across is that it's S-L-O-W! On a small table, it's
just fine. Once I get up to about 400 rows, however, it takes a long time.
6 seconds before the lis
Hi Everyone,
I need Datagrid Live Edit for php. I search on google but but not get
any good.
Please tell me good one.
Advance Thanks
I'll agree with the others that it's hard to trouble shoot without
some code.
The only time I've had issues with IE6, it was due to inconsistencies
in file encoding.
We encode all of our pages and scripts as UTF-8, and the validation
plug-in was ISO-8859-1.
Once I encoded the plug-in source file
Is there a general rule of thumb to avoid orphan nodes? I'm using a
multiselect plugin which I'd like to be able to remove from the DOM
but it is creating orphan nodes in IE and the nodes are not removed
according to sIEve. I suspect it is the order that the elements are
removed from the DOM, but
Basically I am trying to use jQuery to add classes to certain
elements. Works in IE7 and every other browser but not IE6. This an
example of a jQuery statement I have in place so far:
$(document).ready(function() {
$('BODY > DIV').addClass('mainDiv');
});
The CSS has certain styles tha
Thanks guys. Exactly what I needed.
On Apr 9, 4:46 am, MorningZ wrote:
> First off, lose the "@" if you are planning on using version 1.3.1 or
> higher of the jQuery library
>
> second, the docs are your friendhttp://docs.jquery.com/Selectors(see the last
> item in the "basics"
> section on the
Thanks Ralph! I'll give that a try :)
On Apr 9, 10:13 am, Ralph Whitbeck wrote:
> You can use .each to iterate through each div element and increment the
> classname or ID via it's index.
>
> $("div").each(function(i) {
> $(this).addClass("classname" + i);
>
> });
>
> http://docs.jquery.com
Normally I would agree with you but the effect I'm trying to achieve
is based on the location of the image in the grid and not tied to the
image itself. I don't want the end user to have to update the CSS
every time they move an image or add a new one to their gallery. This
seemed like the best
Just hoping to see if there's a solution available.
ok thank you.
On Apr 9, 7:45 pm, Ralph Whitbeck wrote:
> object's don't obey traditional css layering. You'll need to hide the
> object first then toggle your div.
>
> On Thu, Apr 9, 2009 at 12:16 PM, tetris wrote:
>
> > hello
> > to simply toggle a div that contains a flash movie does not wor
object's don't obey traditional css layering. You'll need to hide the
object first then toggle your div.
On Thu, Apr 9, 2009 at 12:16 PM, tetris wrote:
>
> hello
> to simply toggle a div that contains a flash movie does not work in
> firefox,the flash object does not disappear gradually, any th
I have a page with one JCarousel on it.
I need to be able to switch between different data sources for the
single display carousel.
I have it almost working - however when I execute... it loops around
to the default start state and doesn't keep the new data on
displayit blinks past though.
I
In the "boxes.css" try adding "clear:both;" to ".footer .legality"
So that should look like:
.footer .legality {
clear:both;
color:#FF;
padding:10px 0;
}
Let me know if that helps.
On Apr 9, 9:01 am, Main store wrote:
> Hi everybody,
>
> Thanks for this great carousel, i love it !
>
> I
Hi, which would be best way to add some extra links/buttons on
datepicker?
For example i need 2 more options:
3)Today option, which sets values of input field and datepicker UI to
current date
2)A link which clears inputfield value
Do i need to hack the datepicker code or is there a way to create
I'm using the Truncate plugin (http://www.reindel.com/truncate/) and
when the page loads, all the DIVs display full size and then after the
page load, they all shrink and show the "more" link.
I look at the example on the Truncate site and it doesn't behave this
way
Any ideas?
--~--~-~-
Hi everybody,
Thanks for this great carousel, i love it !
I have a bug only on Firefox (IE and Safari OK),
the carousel is here http://www.main-store.fr .
You'll see the bottom of my page is too long.
I have tried to modify the CSS with some Height measurements but
nothing happen..
Can somebod
Hello,
I am using jCarousel 0.2.3 with jQuery 1.3.2 for displaying flickr
images and slimbox2 to show them in a lightbox.
I'm new to jQuery and I fiddled everything together from examples and
it allready works somehow but ere is my problem:
In FF most of the time only one picture is shown at th
hello
to simply toggle a div that contains a flash movie does not work in
firefox,the flash object does not disappear gradually, any thoughts?
code:
$(document).ready(function(){
$("button").click(function () {
$("div").toggle("slow");
});
});
Toggle 'em
http://
/*
* @param dom_obj xml data
* @param ulObj unordered list element
*/
function buildTree(dom_obj, ulObj){
ulObj.append(''+dom_obj[0].nodeName+'');
if(dom_obj[0].hasChildNodes()){
ulObj.append('');
dom_obj.children().each(function (i, obj){
buildTree($(this), ulObj.find
thanks for the useful infomation!
On Apr 7, 11:00 pm, mkmanning wrote:
> Caveat:
> Jonathan's method will get you the child table (the one with id rt0
> from the original OP's example), however Eric's will get you all
> tables that are children of a table, within the context of the parent
> cont
Ok, i managed to get my data to load the way the example shows. It
iscircular now, although I have a bug that happens when i scroll back
with my controls and click on a 'page' it scrolls to the page but
don't put it in the right position, like, page 3 has to show itens 3
and 4, although after scol
i seem to have some funny behavior in IE7 ...
basically i have can add a option to a select elem with a ajaxForm -
http://malsup.com/jquery/form/. then once added, i will repopulate the
select from db.
in Firefox all works fine... in IE7 it seem to work... added and
repopulated dropdown ok. but
On Mar 20, 3:04 pm, Mike Alsup wrote:
> > I'm seeing the same issue with IE8 and setExpression. From
> > MSDN:http://msdn.microsoft.com/en-us/library/ms537634.aspx
>
> Can you try v2.16?
>
> http://www.malsup.com/jquery/block/jquery.blockUI.js?v2.16
Hey Mike,
I'm using 2.16 and I've run into
Hey Ariel.
I am traveling much of the day today, so will throw something together
on the plane.
Cheers; P.
On Apr 8, 4:29 pm, Ariel Flesler wrote:
> (Reply to either)
>
> Can you make a demo out of this ?
> Please put the unminified version of jQuery 1.3.2.
>
> --
> Ariel Flesler
>
> On Apr 8,
Devesh,
Here are some official responses to hopefully help in the next search to see
if jQuery is safe:
>From my blog: http://ralphwhitbeck.com/2009/04/09/IsJQuerySafe.aspx
>From Rey Bango's blog: http://blog.reybango.com/2009/04/09/is-jquery-safe/
I hope this confirms that the team takes jQuer
I am working on a custom filter to check for errors by adding the
addMethod() function within the jQuery Validation Plugin. I have
success so far with most of it except for the last few items.
1) Individual Messages – I like to replace the alert messages to
append their own message. I tried sever
Danilo,
Thank you very much. I would have never noticed it, probably cause I
haven't used flash this way either. Our designer gave me the flash
this way.
Cheers
James
On Apr 8, 7:19 pm, Danilo Celic wrote:
> James,
>
> It appears that you've added the wmode to the OBJECT and EMBED tag,
> howev
Hi Devesh,
I'm not sure if you're concerned because your virus scanner reported
something or because you'd like to have some assurances that what you're
downloading is legitimate. I'll address both just in case.
1) Virus Scanner Reported Something: In some instances, anti-virus
programs have
Hi,
I need a bit of help.
I am using JCarousel.
I need 1 Carousel on my page, but I want to be able to change the
source of the data going to the carousel based on what the user
selects.
For example - set of images and text that is for Paris, one for Rome
and one for Hong Kong... the user selec
One other note. Please only download jQuery from the official site or
use the version hosted on Google's CDN. Here are the official site links:
http://jquery.com/
http://code.google.com/p/jqueryjs/
http://jqueryui.com/ (for the jQuery UI library)
http://code.google.com/apis/ajaxlibs/
Downloadin
Right. That happens on occasion with packed & minified versions of jQuery.
Rey..
MorningZ wrote:
> While i agreed with the underlying thoughts above that the question is
> ridiculous... I have had some members on my primary site tell me that
> Norton reporting "jquery.js" as a dangerous file
>
I'm too searching for a way to change the click behaviour of the nodes
(without touching the plugin-source), so that ONLY +/- expands/
collapses the node and not the click on the SPAN element inside the LI-
element.
Anybody any suggestions?
Thanks a lot
On 10 Mrz., 21:04, Ryan wrote:
> Is th
Hi
This is probably something very simple that ive overlooked and cant
find the answer to but here it goes anyway:
On the Multiple Birds (remote): demo you can add multiple items,
however you can also add the same item twice.
Is there a way to post back to the db script the items that have
alre
http://abrad45.com/sites/beta/
I have this almost working. When you drop the icons on the iMac
Screen, the pages are supposed to load in a new tab. I was doing this
by trying to have the action on "drop" click on a link on the page. I
have things pretty close, but then realized that .click() will
aah, skip that - you'd need to give each row an id and broaden the
selector for that to work wouldn't you.
On Apr 9, 3:01 pm, "ryan.j" wrote:
> could you not just do $('tr td:last').click()?
>
> On Apr 9, 2:56 pm, MorningZ wrote:
>
> > I swear I've seen a post asking this before, one that I eve
Sweet jebus, thank you so much. That fixed the problem right up.
On Apr 8, 8:28 pm, Mike Alsup wrote:
> > I'm trying to use the advancedpagersimilar to
> > thishttp://malsup.com/jquery/cycle/pager2.html
>
> > However, it only works in FF and not inIE.
> > My test page:http://cascodesign.ca/clie
$("tr td:last-child").click(function () {
alert("!");
});
On Apr 9, 3:01 pm, "ryan.j" wrote:
> could you not just do $('tr td:last').click()?
>
> On Apr 9, 2:56 pm, MorningZ wrote:
>
> > I swear I've seen a post asking this before, one that I even
> > participated in, but damned if i ca
1 - 100 of 147 matches
Mail list logo