>> If your html is: >> <div class="property_container"> >> <div id="property_#propertyID#" class="login_container"> >> </div> >> </div>
It's quite a bit more complicated, involving pre-written HTML, HTML inserted via a cfc method use cfsavecontent which is written into a .cfm file, then AJAXed into the pre-written HTML. The AJAXed in HTML contains the empty .login_container div, which only gets its HTML if is needed and a jQuery function is called and the push method is used to write the HTML into a literal JS array, and then pushed into the DIV using the 'join' method. The hardest part is targeting the correct .login_container which needs to receive the pushed JS-generated HTML, based on which property the "star" graphic is being clicked by the user. Your last suggestion was close, but this finally (at least at first attempt at 12:16 am (late!) seems to work: var loginContainer = $('.property_container[id="property_'+propertyID+'"]').find('.login_containe r'); No errors appear in CFB2 initially, or in Firebug when the code is executed. I just pray this holds up under use tomorrow. Thanks for the feedback and suggestions! Maybe we finally have a solution with this approach! Rick > > -----Original Message----- > From: Ricardo Russon [mailto:ricardo.rus...@gmail.com] > Sent: Thursday, December 15, 2011 10:38 PM > To: cf-talk > Subject: Re: (ot) How would I write this js line? > > > Wouldn't there only be one of each ID? > There should be. So in that case: > > var loginContainer = > $('#property_'+propertyID).find('.login_container') > > Otherwise try > > var loginContainer = > $('.property_container[id='+property_'+propertyID+']').find('.login_containe > r') > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349189 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm