jQuery Plugin To Return Delimited Value List Of Stack Element Attributes (Follow Up)

Posted July 25, 2007 at 1:42 PM

Tags: Javascript / DHTML

This is just a follow up to my previous post on the same topic. In my comments, I had mentioned that after I wrote my attrList() jQuery plugin, someone pointed out to me that the same thing was doable using an array and the jQuery mapping function (which maps an array to a function). Someone then contacted me, asking about it, so I thought I would post up the same demo, except this time, instead of building a value list string as I iterate through the jQuery stack elements, I am going to be building up an array. Then, once I have completely gone through the elements, I will simply join the array using the given delimiter.

The benefit here, while very small, is that we are not building a string as we go - we are building an array. Then, once we are through, we concatenate all the value in the array down into a single string. From what I have been told, doing this via an array has much less overhead than repetitive string concatenation (in general). However, I have also been told that Javascript arrays are just about the most poorly implemented arrays of any programming language (in terms of lookup speeds), so the speed thing might not be a factor. Using the join() method on the Javascript array is, however, much cleaner looking to me and it is certainly nice not to have to worry about the delimiter every time we add a new value.

 Launch code in new window » Download code as text file »

  • <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  • <html>
  • <head>
  • <title>Writing jQuery Plugin Demo</title>
  •  
  • <!-- Linked Files. -->
  • <script type="text/javascript" src="jquery.pack.js"></script>
  • <script type="text/javascript">
  •  
  • // This jQuery v1.1.3 plugin will return an delimited
  • // list of the given attribute of all elements in the
  • // current jQuery stack.
  •  
  • jQuery.fn.attrList = function( strAttribute, strDelimiter ){
  • // Create an array to store the attribute values of
  • // the jQuery stack items.
  • var arrValues = new Array();
  •  
  • // Check to see if we were given a delimiter.
  • // By default, we will use the comma.
  • strDelimiter = (strDelimiter ? strDelimiter : ",");
  •  
  • // Loop over each element in the jQuery stack and
  • // add the given attribute to the value array.
  • this.each(
  • function( intI ){
  • // Get a jQuery version of the current
  • // stack element.
  • var jNode = $( this );
  •  
  • // Add the given attribute value to our
  • // values array.
  • arrValues[ arrValues.length ] = jNode.attr(
  • strAttribute
  • );
  •  
  • }
  • );
  •  
  • // Return the value list by joining the array.
  • return(
  • arrValues.join( strDelimiter )
  • );
  • }
  •  
  •  
  • // This will return the ID list of all inputs
  • // with the name, "ID".
  •  
  • function GetIDs(){
  • return(
  • $( "input[@name='id']" ).attrList( "value", "-" )
  • );
  • }
  •  
  • </script>
  • </head>
  • <body>
  •  
  • <form>
  •  
  • <!---
  • Get some hidden values. The order of the
  • value is important. We want to make sure
  • this is reflected in the value list.
  • --->
  • <input type="hidden" name="id" value="4" />
  • <input type="hidden" name="id" value="5" />
  • <input type="hidden" name="id" value="1" />
  • <input type="hidden" name="id" value="2" />
  • <input type="hidden" name="id" value="3" />
  •  
  • <input
  • type="button"
  • value="Alert Value List"
  • onclick="alert( GetIDs() );"
  • />
  •  
  • </form>
  •  
  • </body>
  • </html>

Clicking on the button properly alerts the value list:

4-5-1-2-3

I chose not to use the jQuery $.map() method, since the each() method does pretty much the same exact thing.

Download Code Snippet ZIP File

Post Comment  |  Ask Ben  |  Permalink  |  Other Searches  |  Print Page




Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

Aug 8, 2007 at 2:57 PM // reply »
1 Comments

Thanks I was looking for this special "join()" for jQuery :)


May 28, 2009 at 5:04 PM // reply »
1 Comments

how 'bout this-

var joinedValues = $.map($("#yourselector"),function(el){
return $(el).html();
}).join(",");


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 20, 2009 at 11:32 PM
Five Months Without Hungarian Notation And I'm Loving It
I've used headless camel case for years for not only ColdFusion variables, but also SQL tables and fields... pretty much everything involving code. I also subscribe to the "don't abbreviate and clea ... read »
Nov 20, 2009 at 11:00 PM
Five Months Without Hungarian Notation And I'm Loving It
@Marcel, Yeah, I always err on the side of longer but more readable variable names. As for the camel casing of CF methods and the headless camel casing of custom items, I get around this by always ... read »
Nov 20, 2009 at 10:56 PM
Five Months Without Hungarian Notation And I'm Loving It
I use the following and love it: my.namespace.MyComponents.functionMethodsOrUDF() CONSTANT_VALUES_OR_PROPERTIES One thing I always try is to CamelCaseBuiltInColdFusionFunctions() so others can tell ... read »
Nov 20, 2009 at 5:38 PM
Learning ColdFusion 8: CFImage Part I - Reading And Writing Images
Hi Ben, Great article. I've been looking around to see if ColdFusion image engine can programatically create the following "wrap around" effect: http://www.creativepro.com/article/photoshop-s-she ... read »
Nov 20, 2009 at 5:35 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Dave: I talked to Gert he suggested: <cfhttp method="get" url="http://{some cf website}" result="stuff" addtoken="yes" /> Note the addition of cfhttp attribute addtoken. That should persist y ... read »
Nov 20, 2009 at 5:23 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, Ahh, gotcha, yeah that makes sense. ... read »
Nov 20, 2009 at 5:17 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
Ben, sorry if I didn't make this clear. You can make it work like that if you want, just put <cfset session.foo = 1> (and <cfset application.foo = 1>) in your OnRequestStart() and it reve ... read »