<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/jive/rss" version="2.0">
  <channel>
    <title>Adobe Community : Popular Discussions - How to - HTML / CSS / JavaScript</title>
    <link>https://forums.adobe.com/community/business_catalyst/how_to-html-css-javascript?view=discussions</link>
    <description>Popular Discussion Threads in How to - HTML / CSS / JavaScript</description>
    <language>en</language>
    <pubDate>Fri, 08 Aug 2014 23:06:40 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2014-08-08T23:06:40Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Solution: Scripts not working after Ajax replaces part of page</title>
      <link>https://forums.adobe.com/thread/992045</link>
      <description>&lt;!-- [DocumentBodyStart:7b129b8f-dabe-464d-80bc-fce892c484ec] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I'm far from an expert at js and jQuery, so I welcome collaboration and corrections on this solution. This is all from the context of a catalog's large product view when using ajax to switch between grouped products.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;First, the issue:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;BC updates the product information via an ajax call when you click the 'add to cart' button or make selections between product groupings. &lt;/li&gt;&lt;li&gt;When BC does this, it entirely reloads page_content.html. The net result: all the script bindings that were attached to those tags are wiped out.&lt;/li&gt;&lt;li&gt;The scripts are never rebound to the tags because that initially occurs when the DOM is being created. Content changes via an ajax call don't recreate the DOM.&lt;/li&gt;&lt;/ol&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Possible solutions:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Hardcode the affected scripts inside page_content.html. Don't just link a script file to it. It has to be hardcoded. This is not recommended, as it is bad coding practice to place scripts inline with our html.&lt;/li&gt;&lt;li&gt;Avoid the use of scripts in that area (good luck&lt;span aria-label="Wink" class="emoticon-inline emoticon_wink" style="height:16px;width:16px;"&gt;&lt;/span&gt;).&lt;/li&gt;&lt;li&gt;Use delegation with .on() to rebind. I believe this is the best option, and it's the one I am going to demonstrate.&lt;/li&gt;&lt;/ol&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;To avoid inline scripts, I like using an external script.js file. It keeps my document clean from script clutter and it's easier to manage my scripts. Also, I want a solution I can implement one time, in one place, instead of with every situation I encounter. Below is an example of how my scripts are organized. The areas in bold are the specific solution.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;jQuery.noConflict();&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&lt;strong&gt;function scriptlist() {&lt;/strong&gt;&lt;/p&gt;&lt;p style="padding-left: 60px;"&gt;var $ = jQuery;&lt;/p&gt;&lt;p style="padding-left: 60px;"&gt;var Engine = {&lt;/p&gt;&lt;p style="padding-left: 90px;"&gt;utils : {&lt;/p&gt;&lt;p style="padding-left: 120px;"&gt;functionName : function(){&lt;/p&gt;&lt;p style="padding-left: 150px;"&gt;// Do stuff in here&lt;/p&gt;&lt;p style="padding-left: 120px;"&gt;},&lt;/p&gt;&lt;p style="padding-left: 120px;"&gt;functionName2 : function(){&lt;/p&gt;&lt;p style="padding-left: 150px;"&gt;// do something else&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p style="padding-left: 120px;"&gt;}&lt;/p&gt;&lt;p style="padding-left: 90px;"&gt;},&lt;/p&gt;&lt;p style="padding-left: 90px;"&gt;ui : {&lt;/p&gt;&lt;p style="padding-left: 120px;"&gt;functionName : function(){&lt;/p&gt;&lt;p style="padding-left: 150px;"&gt;// Do stuff in here&lt;/p&gt;&lt;p style="padding-left: 120px;"&gt;},&lt;/p&gt;&lt;p style="padding-left: 120px;"&gt;functionName2 : function(){&lt;/p&gt;&lt;p style="padding-left: 150px;"&gt;// do something else&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p style="padding-left: 120px;"&gt;}&lt;/p&gt;&lt;p style="padding-left: 90px;"&gt;}&lt;/p&gt;&lt;p style="padding-left: 60px;"&gt;};&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ( $(element).length ) { Engine.utils.functionName(); }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ( $(element2).length ) { Engine.utils.functionName2(); }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ( $(element3).length ) { Engine.ui.functionName(); }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ( $(element4).length ) { Engine.ui.functionName2(); }&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;};&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&lt;strong&gt;jQuery('body').on('click.productSubmitInput', function(){&lt;/strong&gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; jQuery.ready(scriptlist());&lt;/strong&gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&lt;strong&gt;});&lt;/strong&gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&lt;strong&gt;scriptlist();&lt;/strong&gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;&lt;strong&gt;&lt;br/&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The key here was the use of the .on() jQuery method. Here is how it works:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;I attached on() to the body element on the page with &lt;strong&gt;jQuery('body').on()&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;It's attached to the body, because the body is outside of page_content.html and won't have it's binding removed during the ajax call. Events register all the way up their ancester elements on the page, so on() can pick up the event all the way up to the body.&lt;strong&gt;&lt;br/&gt;&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;Told it to look for a certain event: &lt;strong&gt;&lt;strong&gt;'click&lt;/strong&gt;&lt;/strong&gt;&lt;strong&gt;&lt;strong&gt;.productSubmitInput'&lt;/strong&gt;&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;When the event occurs, it should trigger ready() to refresh the DOM. &lt;strong&gt;jQuery.ready()&lt;/strong&gt;&lt;strong&gt;&lt;br/&gt;&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;and run my functions against it, thereby rebinding my document.&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:7b129b8f-dabe-464d-80bc-fce892c484ec] --&gt;&lt;img src='/beacon?t=1415884432396' /&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">jquery</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">ajax</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">e-commerce</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">large_product_view</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">coding</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">best_practices</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">bc</category>
      <pubDate>Wed, 18 Apr 2012 23:10:40 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/992045</guid>
      <dc:date>2012-04-18T23:10:40Z</dc:date>
      <clearspace:dateToText>3 months 5 days ago</clearspace:dateToText>
      <clearspace:messageCount>28</clearspace:messageCount>
      <clearspace:replyCount>27</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Showing and hiding dropdowns on product page, based on selected values</title>
      <link>https://forums.adobe.com/thread/1621368</link>
      <description>&lt;!-- [DocumentBodyStart:055683fd-3102-4a38-9f0f-2310b22081d6] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I would like my product page to show different subsequent dropdowns based on individual dropdown values. &lt;/p&gt;&lt;p&gt;&lt;br/&gt;I've managed to achieve this via JavaScript, but I do not like how it works.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;As far as I can tell, there is no proper identifier for each individual dropdown to determine which one it is, so all I can do at the moment is to rely on their order in the DOM, which is bad and makes it difficult for me to create a solution that would work for all products.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For instance, if the following is a single attribute:&lt;/p&gt;&lt;p&gt;&amp;lt;div class="catProductAttributeGroup" style="display: none;"&amp;gt;&amp;lt;div class="catProdAttributeTitle"&amp;gt;Metallic Foiling&amp;lt;/div&amp;gt;&amp;lt;div class="catProdAttributeItem"&amp;gt;&amp;lt;select&amp;gt;&amp;lt;option value=""&amp;gt;-- Please select --&amp;lt;/option&amp;gt;&amp;lt;option value="6051720"&amp;gt;Not required &amp;lt;/option&amp;gt;&amp;lt;option value="6051721"&amp;gt;Foil ONE side + &amp;pound;45&amp;lt;/option&amp;gt;&amp;lt;option value="6051722"&amp;gt;Foiling BOTH sides + &amp;pound;75&amp;lt;/option&amp;gt;&amp;lt;/select&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I would like the outer-most div to have some sort of html attribute that holds the product attribute id. Something like, data-attribute-id="XXXXXXX". Is that possible?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here's what I have up to this point:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I use {tag_attributes_json}, {tag_product_json} and {tag_currency} to get these values into javascript on page load, so I can use them later.&lt;/p&gt;&lt;p&gt;&lt;br/&gt;Then, I hook to change events of the drodpowns I have and then toggle their visibility based on which ones are selected. I rely on the jequery ':eq(n)' selector to achieve this, which I do not like. Is there an option for the {tag_attributes} helper which would make it add some extra information (such as attribute ID on the dropdown) on the generated HTML?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;All of this works initially, but If I then 'Add to cart', the product element get's ajax-reloaded and the events are suddenly unhooked, so it doesn't work anymore. For that one, there are two options:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1. I could hook to an event that triggers once the product has been added to cart and the page is ready again. &lt;strong&gt;Is there such an event?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;2. I could implement my own add to cart using bcInternals.shop.addToCart. I tried doing this, but I have two problems with it.&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;a. addToCart seems to add my selection twice, for some reason.&lt;strong&gt; Any ideas what I might be doing wrong?&lt;/strong&gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;b. the cart info in&amp;nbsp; the top right corner doesn't refresh. it seems it tries to refresh, but there's some sort of access error in the script. This part is not yet fully added to the page, but there's a function that would do the adding to cart at the bottom of the bigger script block. &lt;strong&gt;Am I using the built in addToCart function incorrectly?&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px; padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This is the page I have the partially implemented functionality added on:&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.afterhourscreativestudio.com/business-cards/matt-laminated-business-cards" rel="nofollow"&gt;Matt Laminated Business Cards&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The scripts are currently embedded inside the HTML. Once I have it properly implemented, I'd like to extract it into a separate file. Search for "&lt;span style="color: #222222; font-family: Consolas, 'Lucida Console', monospace; font-size: 12px;"&gt;$productAttributesElement" &lt;span style="font-family: arial, helvetica, sans-serif;"&gt;to find the block with the functionality and for&lt;/span&gt; "productInfo" &lt;span style="font-family: arial, helvetica, sans-serif;"&gt;to find the part where I store the product data with the _json tags.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:055683fd-3102-4a38-9f0f-2310b22081d6] --&gt;</description>
      <pubDate>Wed, 29 Oct 2014 13:14:20 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1621368</guid>
      <dc:date>2014-10-29T13:14:20Z</dc:date>
      <clearspace:dateToText>19 hours 2 minutes ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>New Bootstrap 3 Navbar plugin for BC Community.</title>
      <link>https://forums.adobe.com/thread/1567919</link>
      <description>&lt;!-- [DocumentBodyStart:a0324865-562d-40be-9877-ff6657785cf4] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello everyone!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have just finished creating a plugin that will set up all the settings in order to make Bootstrap Navbar work without having to hassle with CSS &amp;amp; Javascript, or having to&lt;/p&gt;&lt;p&gt;add the class "dropdown" for each dropdown menu inside Dynamic Menu manager at the backend. It also lets you to choose between toggle and hover on the dropdown menu. So if you client changes his/her mind you just&lt;/p&gt;&lt;p&gt;change the property "dropdownToggle" to false.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If you can optimise to speed it up feel free to do so, just make sure you share it here afterwards.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Download the plugin here &lt;a class="jive-link-external-small" href="http://www.it-amigo.se/LiteratureRetrieve.aspx?ID=131498" rel="nofollow"&gt;http://www.it-amigo.se/LiteratureRetrieve.aspx?ID=131498&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong style=": ; font-size: 12pt; text-decoration: underline;"&gt;Instrucitons&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Just add the plugin as any JQuery plugin and then add the following code to your html document.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;$('#top_navbar').bootstrapNav({&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Dropdown Choice: Toggle(Bootstrap Default) = true, Hover Dropdown = false.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; dropdownToggle: true,&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // At what point should navbar go back to Toggle for Mobile Devices.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; breakpoint: 1199&lt;/p&gt;&lt;p&gt;});&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong style="text-decoration: underline;"&gt;Tutorial Video&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a0324865-562d-40be-9877-ff6657785cf4] --&gt;</description>
      <pubDate>Sun, 07 Sep 2014 18:08:25 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1567919</guid>
      <dc:date>2014-09-07T18:08:25Z</dc:date>
      <clearspace:dateToText>2 months 5 days ago</clearspace:dateToText>
      <clearspace:messageCount>7</clearspace:messageCount>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Replace table codes with useLi in BC module template &gt; online Shop Layouts</title>
      <link>https://forums.adobe.com/thread/1631147</link>
      <description>&lt;!-- [DocumentBodyStart:9291e8f4-8932-41d2-a97b-5a01b586e6f8] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I am having a problem in BC module template &amp;gt; online Shop Layouts:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Trying to get rid of Table Codes that inserted by BC system with List or possible Div&lt;/li&gt;&lt;li&gt;Contact with Adobe BC tech support, they suggest use this useLi tag in my online Shop Layouts. After I implement the codes below, and it doesn't work. The table code is still there on the front page:&lt;ul&gt;&lt;li&gt;Here is the code that I implement in the module template: &lt;ul&gt;&lt;li&gt;&lt;em style=": ; color: #3366ff;"&gt;{tag_productlist, useLi (true)}&lt;/em&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="min-height: 8pt; padding: 0px; padding-left: 90px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ul&gt;&lt;ul&gt;&lt;li&gt;Below is the front page codes, you can see the table is inserted by BC system:&lt;ul&gt;&lt;li&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;em style="color: #3366ff;"&gt;&amp;lt;table class="productTable productSmall"&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td id="catProdTd_9074914" class="productItem"&amp;gt;&lt;/em&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: #3366ff;"&gt;&lt;/span&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;em style="color: #3366ff;"&gt;&amp;lt;/td&amp;gt;&amp;lt;td class="productItem"&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td class="productItem"&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td class="productItem"&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&lt;/em&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How could I remove the table that insert by BC System? Please help!!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9291e8f4-8932-41d2-a97b-5a01b586e6f8] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">useli in bc module template</category>
      <pubDate>Mon, 10 Nov 2014 05:23:40 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1631147</guid>
      <dc:date>2014-11-10T05:23:40Z</dc:date>
      <clearspace:dateToText>15 hours 29 minutes ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to grab CSS styles from Muse and insert them into Business Catalyst Blog and News</title>
      <link>https://forums.adobe.com/thread/1390231</link>
      <description>&lt;!-- [DocumentBodyStart:1126be62-ce88-4037-aefb-8885baf5911b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hey guys! I got into a problem, hope you can give me a hand!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;A couple of months ago I saw this tutorial: &lt;a class="jive-link-external-small" href="http://tv.adobe.com/watch/learn-business-catalyst/adding-business-catalyst-features-to-your-muse-sites/" rel="nofollow"&gt;http://tv.adobe.com/watch/learn-business-catalyst/adding-business-catalyst-features-to-you r-muse-sites/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;where it showed how to grab CSS styles from Muse and insert them into Business Catalyst to give styles to the Blog and same to the News.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Basically what it was it's you set in Muse a "mockup page" where you show with muse native text how the Blog and News would look like, then you preview the page in your browser and give "Inspect Element" to the text body, the event text and such and such. When "Inspect Element" showed you div and styles you then would grab the styles that were set to that text, the main thing is that inside the main div it would go like: &amp;lt;h3 id="u2526-3" class="H3-Page-Subheading"&amp;nbsp; and then Bodytext-SourceSansPro="Be the best you can be". So back in Business Catalyst you would go to Develop tab and got to the CSS sheet of the modules which is: "modulestylesheet.css" and set the following: .H3 Page Subheading and the CSS styles, saying give this styles to all subheading in the page that is H3.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now muse gave you that specifications, the thing is that it doesn't give it anymore, it gives the styles but it doesn give weather it's H3 subheading or H5 Heading, so I don't know how to tell Business Catalyst to give the styles to what class... Does anyone know how to fix this.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;A friend of mine gave me an alternative which was modify the "styles" from the Module Layout, the thing is that in the module layout you can only use WebSafe Fonts and doing it by CSS Styles it respected if there was Typekit Fonts involved.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I really would aprecciate the help guys! Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:1126be62-ce88-4037-aefb-8885baf5911b] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">blog</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">css</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">muse</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">styles</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">news</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">bc</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">announcements</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">css_styles</category>
      <pubDate>Sun, 26 Jan 2014 22:16:56 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1390231</guid>
      <dc:date>2014-01-26T22:16:56Z</dc:date>
      <clearspace:dateToText>8 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to change shopping cart Buy Now button?</title>
      <link>https://forums.adobe.com/thread/1596460</link>
      <description>&lt;!-- [DocumentBodyStart:22d22e39-cf05-4cad-bd4a-45d073d257a9] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Hello All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;I've been racking my brain on this one and could really use some help!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Check out the "BUY NOW" button on my website here:&lt;/p&gt;&lt;p style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;a class="jive-link-external-small" href="http://www.themesformuse.com/themesformuse/index.html" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3a91d7;"&gt;Themes For MuseHome&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;How do I get rid of the grey/white color behind the text? (it's grey on one browser, white on another!)&lt;/p&gt;&lt;p style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;I want it to be a solid red button and would like the gray area to be transparent.&lt;/p&gt;&lt;p style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;span style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;I looked in a lot of the css files but can;t figure out which style matches up with this button.&lt;/span&gt;&lt;/p&gt;&lt;p style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Does anyone know where I'm supposed to go to change this?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Any help would be greatly appreciated. Thanks!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Jason&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:22d22e39-cf05-4cad-bd4a-45d073d257a9] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">color</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">css</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">e-commerce</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">content management system</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">shopping cart</category>
      <pubDate>Tue, 07 Oct 2014 19:24:57 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1596460</guid>
      <dc:date>2014-10-07T19:24:57Z</dc:date>
      <clearspace:dateToText>2 weeks 3 days ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Search box with dropdown display of results</title>
      <link>https://forums.adobe.com/thread/1307756</link>
      <description>&lt;!-- [DocumentBodyStart:21eaa0e4-54c1-4492-9fea-115ca73f423c] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I'm looking to modify the Search module functionality (or create a web app?) that is used in sites like help.adobe.com . I would like the search function to work like this... As a person types in a search term, a dropdown box shows results that match the text as it is typed in letter by letter.&amp;nbsp; A person can then click one of the displayed results at any time or click a search icon to see the page of all matching results.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I've looked around the forum to see if somebody has done this already but can't see that they have. I assume a Javascript at a minimum might be required (not a developer myself). Anybody familiar with how to accomplish that?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:21eaa0e4-54c1-4492-9fea-115ca73f423c] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">jquery</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">js</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">webapp</category>
      <pubDate>Tue, 01 Oct 2013 18:36:27 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1307756</guid>
      <dc:date>2013-10-01T18:36:27Z</dc:date>
      <clearspace:dateToText>3 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Dynamic Menu Selected Class</title>
      <link>https://forums.adobe.com/thread/1547681</link>
      <description>&lt;!-- [DocumentBodyStart:e7380020-90af-45f6-be58-2290470ececa] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hey everyone,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;On the site I am working on here &lt;a class="jive-link-external-small" href="http://sunsweetuk.wsiefusion.net/" rel="nofollow"&gt;http://sunsweetuk.wsiefusion.net/&lt;/a&gt; you can see right away the "About Us" menu item has the selected class turned on, even though it isn't the selected page.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If you go to this page: &lt;a class="jive-link-external-small" href="http://sunsweetuk.wsiefusion.net/sunsweet-story" rel="nofollow"&gt;http://sunsweetuk.wsiefusion.net/sunsweet-story&lt;/a&gt; you can see it turns off...However if you select any menu item after About Us the About Us item keeps the "selected" class turned on.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I cannot quite figure out what is going on here. I do have 'flexnav' js added onto this site, as it is responsive. Any help would be appreciated. Thanks.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Regards, Brian Richards&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e7380020-90af-45f6-be58-2290470ececa] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">flexnav</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">dynamic menu</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">javascript code</category>
      <pubDate>Thu, 14 Aug 2014 14:53:46 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1547681</guid>
      <dc:date>2014-08-14T14:53:46Z</dc:date>
      <clearspace:dateToText>2 months 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>template bumping head content holders to body</title>
      <link>https://forums.adobe.com/thread/1547052</link>
      <description>&lt;!-- [DocumentBodyStart:23cedeac-ed08-4179-aa2b-c13f528791d3] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I am trying to place content holders for scripts, queries and meta tags in the head of the template, but after I've saved the template, it bumps them to the body. What am I doing wrong or what should I be doing differently?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:23cedeac-ed08-4179-aa2b-c13f528791d3] --&gt;</description>
      <pubDate>Wed, 13 Aug 2014 21:36:51 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1547052</guid>
      <dc:date>2014-08-13T21:36:51Z</dc:date>
      <clearspace:dateToText>2 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>how can i create my BC featured product list in to a slide show for multiple products in one row. i have products aligned in a row i just would like to make it a slide show of the multiple (20) products.</title>
      <link>https://forums.adobe.com/thread/1478125</link>
      <description>&lt;!-- [DocumentBodyStart:9967bffb-cedd-4622-a58e-1b24d8c48e97] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;i have products aligned in a row already using custom css.i just would like to make it a slide show of the multiple (20) products in the one row.&lt;/p&gt;&lt;p&gt;i am using the featured product module from the development section of business catalyst. i would love to display as many new products as possible in one row of products. so i can just click a arrow left button and scroll through the products.&lt;/p&gt;&lt;p&gt;holy-shippers.businesscatalyst.com is the site i am mentioning.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9967bffb-cedd-4622-a58e-1b24d8c48e97] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">slideshow</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">businesscatalyst_muse</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">product_feature_list</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">ecommerce_module</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">ecommece</category>
      <pubDate>Mon, 19 May 2014 23:11:45 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1478125</guid>
      <dc:date>2014-05-19T23:11:45Z</dc:date>
      <clearspace:dateToText>5 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Work around for adding 'poplet' images to a product</title>
      <link>https://forums.adobe.com/thread/1452392</link>
      <description>&lt;!-- [DocumentBodyStart:1f4c4bb3-75f2-47c5-9529-708b9cc59eef] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;What I am trying to avoid is manually entering poplet image paths for each product in the online store. I have a PHP solution, but that obviously won't work (no server side coding).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Ideally it would look something like:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Look in folder: {tag_productcode}&lt;/p&gt;&lt;p&gt;Pull all image paths&lt;/p&gt;&lt;p&gt;Insert into &amp;lt;img&amp;gt; tags&lt;/p&gt;&lt;p&gt;Insert into html&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm probably dreaming here, but does anyone know of a work around to making something like this happen?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:1f4c4bb3-75f2-47c5-9529-708b9cc59eef] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">image</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">products</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">e-commerce</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">large_product_view</category>
      <pubDate>Thu, 17 Apr 2014 00:36:42 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1452392</guid>
      <dc:date>2014-04-17T00:36:42Z</dc:date>
      <clearspace:dateToText>6 months 4 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Help changing color of menu in Adora template</title>
      <link>https://forums.adobe.com/thread/1320614</link>
      <description>&lt;!-- [DocumentBodyStart:60af7057-8cdb-4bc9-8090-dc34829dd9e5] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I'm a new BC user and have been scouring the CSS stylesheet for the Adora template, but I can't figure out where the color is being set for the main menu. I was able to change the navigation.png image to be solid instead of transparent and that covers the maroon/red color, but you can still see it peaking around the edges in some browsers, or full-on during page refresh, before the png image loads. Additionally, I added a sub-menu and the maroon/red color is back. The site is www.digitalglobesystems.com&lt;/p&gt;&lt;p&gt;Can anyone point me to the location of where the color is being set in the stylesheet? I've done a lot of trial and error with no results. Another thread said the color was set in the spry assets, but I don't see that in my File Browser.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:60af7057-8cdb-4bc9-8090-dc34829dd9e5] --&gt;</description>
      <pubDate>Wed, 23 Oct 2013 16:25:23 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1320614</guid>
      <dc:date>2013-10-23T16:25:23Z</dc:date>
      <clearspace:dateToText>1 month 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>4</clearspace:messageCount>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>ASCII characters showing as code in form validation</title>
      <link>https://forums.adobe.com/thread/1303754</link>
      <description>&lt;!-- [DocumentBodyStart:9cb9b6e6-2503-4a33-9339-2590c0e20179] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I was building a version of a web form in Spanish, and in the front end validation all the ASCII characters for the accented letters are showing up as code.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Also, I wanted the names to go into the CRM like the typically do, so I used the First Name, Last Name fields and just changed the label.&amp;nbsp; However these show up in the alert as "First Name" and "Last Name".&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any ideas about how to solve these issues?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;Jeff&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9cb9b6e6-2503-4a33-9339-2590c0e20179] --&gt;</description>
      <pubDate>Wed, 25 Sep 2013 17:09:20 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1303754</guid>
      <dc:date>2013-09-25T17:09:20Z</dc:date>
      <clearspace:dateToText>1 year 1 month ago</clearspace:dateToText>
      <clearspace:messageCount>5</clearspace:messageCount>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Is it possible to Resort Items on price?</title>
      <link>https://forums.adobe.com/thread/1275467</link>
      <description>&lt;!-- [DocumentBodyStart:810cfa64-5884-444a-971f-a889965d2c6b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;My client &lt;strong&gt;INSISTS&lt;/strong&gt; on having&amp;nbsp; a sort function on the catalog display page, to be able for the customer to re-sort the items by price. &lt;/p&gt;&lt;p&gt;The search feature does&amp;nbsp; not re-sort the current page, but creates a new page of results. &lt;/p&gt;&lt;p&gt;I am wondering if it is even possible to do, because on the overall catalog module template, there isn't an area where you can call the tag_price for the individual items in the catalog.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; And then, even if you could put a sort button on the page and it could work,&amp;nbsp; would it then re-sort the multiple pages of a large catalog or only the current page? &lt;/p&gt;&lt;p&gt;In php a dynamic call to the database allows for a resorting of the display, but javascript relies on the values of the dispayed page, and the tag_price appears on the small item template not in the catalog template... &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="client same-author client-border"&gt;&lt;span class="visible time"&gt;10:19 am&lt;/span&gt; We are currently sorting by price {tag_productlist,4,,12, price desc,,true}, but we need the option to allow the customer to resort from low to high for the same catalog display or in search results.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:810cfa64-5884-444a-971f-a889965d2c6b] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">display</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">items</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">re-sort</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">resort</category>
      <pubDate>Wed, 14 Aug 2013 14:33:15 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1275467</guid>
      <dc:date>2013-08-14T14:33:15Z</dc:date>
      <clearspace:dateToText>10 months 6 days ago</clearspace:dateToText>
      <clearspace:messageCount>4</clearspace:messageCount>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Using jQuery Datepicker on form</title>
      <link>https://forums.adobe.com/thread/1274048</link>
      <description>&lt;!-- [DocumentBodyStart:c7432076-81d4-4505-b20a-ffa53cb4b374] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have a form whos results are passed onto another website. The problem I'm having is getting my date fields to work using jQuery datepicker. My popup calendar is not appearing. If I manually add dates the form works fine. I implemented the $j suggested in KB. Is BC conflicting with this function? How can I get the datepicker to be same as internal BC forms.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here's my code to reference scripts&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;!-- calendar scripts --&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;lt;script src="&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://code.jquery.com/jquery-1.9.1.js" rel="nofollow" target="_blank"&gt;http://code.jquery.com/jquery-1.9.1.js&lt;/a&gt;&lt;span&gt;"&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;lt;script src="&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://code.jquery.com/ui/1.10.3/jquery-ui.js" rel="nofollow" target="_blank"&gt;http://code.jquery.com/ui/1.10.3/jquery-ui.js&lt;/a&gt;&lt;span&gt;"&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;lt;script type="text/javascript" src="/_Assets/js/date.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;!--[if IE]&amp;gt;&amp;lt;script type="text/javascript" src="/_Assets/js/jquery.bgiframe.js"&amp;gt;&amp;lt;/script&amp;gt;&amp;lt;![endif]--&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;lt;!-- jquery.datePicker.js --&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;script type="text/javascript" src="/_Assets/js/jquery.datePicker.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;!-- page specific scripts --&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;script type="text/javascript" charset="utf-8"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$j = jQuery.noConflict(); &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date.format = "mm/dd";&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$j(function()&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$j(".date-pick").datePicker()&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;});&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/script&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;lt;form action="&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://www.wingatehotels.com/Wingate/control/Booking/check_avail" rel="nofollow" target="_blank"&gt;http://www.wingatehotels.com/Wingate/control/Booking/check_avail&lt;/a&gt;&lt;span&gt;?" method="get" enctype="multipart/form-data" name="catwebformform70219"&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;table cellpadding="0px" cellspacing="0px" border="0px"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;tbody&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;td colspan="2" valign="top" style="height: 45px;"&amp;gt;Check-in Date&amp;lt;br /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;input name="checkInDate" type="text" size="20" maxlength="20" tabindex="1" class="date-pick" /&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;td colspan="2" valign="top" style="height: 45px;"&amp;gt;Check-out Date&amp;lt;br /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;input name="checkOutDate" type="text" size="20" maxlength="20" tabindex="2" class="date-pick" /&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;td style="height: 45px;"&amp;gt;Adults&amp;lt;br /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;select name="numberAdults" tabindex="3"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="1"&amp;gt;1&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="2"&amp;gt;2&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="3"&amp;gt;3&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="4"&amp;gt;4&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="5"&amp;gt;5&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="6"&amp;gt;6&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="7"&amp;gt;7&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="8"&amp;gt;8&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="9"&amp;gt;9&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="10"&amp;gt;10&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/select&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;td style="height: 45px;"&amp;gt;Children (0-12)&amp;lt;br /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;select name="numberAdults" tabindex="3"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="0"&amp;gt;0&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="1"&amp;gt;1&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="2"&amp;gt;2&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="3"&amp;gt;3&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="4"&amp;gt;4&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="5"&amp;gt;5&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="6"&amp;gt;6&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="7"&amp;gt;7&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="8"&amp;gt;8&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="9"&amp;gt;9&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="10"&amp;gt;10&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/select&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;td colspan="2" style="height: 45px;"&amp;gt;Rate&amp;lt;br /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;select name="rate" tabindex="4"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option&amp;gt;Best Available&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="S3A"&amp;gt;AAA/CAA Rate&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="SSR"&amp;gt;Senior/AARP Rate&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;option value="SGV"&amp;gt;Government Rate&amp;lt;/option&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/select&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;td colspan="2"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;input type="Hidden" name="propertyId" value="13084" /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;input type="Hidden" name="BrandId" value="WG" /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;input id="saveForm" class="mainForm" type="submit" value="Check Availability" /&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a href="&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://www.wingatehotels.com/Wingate/control/Booking/modify_dates?propertyId=13084" rel="nofollow" target="_blank"&gt;http://www.wingatehotels.com/Wingate/control/Booking/modify_dates?propertyId=13084&lt;/a&gt;&lt;span&gt;" target="_blank" rel="nofollow"&amp;gt;&amp;lt;img src="/_Assets/img/bell.png" width="65" height="62" alt="Reserve Hotel Room" class="bell" style="border-width: 0px; border-style: solid;" /&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/tr&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/tbody&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/table&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/form&amp;gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c7432076-81d4-4505-b20a-ffa53cb4b374] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">jquery</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">form</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">js</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">coding</category>
      <pubDate>Mon, 12 Aug 2013 16:43:40 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1274048</guid>
      <dc:date>2013-08-12T16:43:40Z</dc:date>
      <clearspace:dateToText>1 year 3 months ago</clearspace:dateToText>
      <clearspace:messageCount>8</clearspace:messageCount>
      <clearspace:replyCount>7</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>change hand cursor to a magnifying glass</title>
      <link>https://forums.adobe.com/thread/1212978</link>
      <description>&lt;!-- [DocumentBodyStart:0f7b97e4-547e-4af3-9321-4946460b4ebc] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;span&gt;Does anyone know how I can change the hand cursor to a magnifying glass on mouse-over? Needs to be cross-browser compatible! To be used on the large image in the Individual Product - Large template as in the following example: &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://meluka.businesscatalyst.com/bedroom/underbed-storage-1/underbed-storage-2#" rel="nofollow" target="_blank"&gt;http://meluka.businesscatalyst.com/bedroom/underbed-storage-1/underbed-storage-2#&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:0f7b97e4-547e-4af3-9321-4946460b4ebc] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">image</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">html</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">dynamic</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">css</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">html5</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">e-commerce</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">modulestylesheets</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">large_product_view</category>
      <pubDate>Thu, 16 May 2013 04:57:09 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1212978</guid>
      <dc:date>2013-05-16T04:57:09Z</dc:date>
      <clearspace:dateToText>1 year 6 months ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>og image not appearing in FaceBook</title>
      <link>https://forums.adobe.com/thread/1192489</link>
      <description>&lt;!-- [DocumentBodyStart:4a5d0a84-d881-4270-83f3-c5bcfafa6504] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Open graph tag doesn't appear to be working.&amp;nbsp; When adding the url to a FaceBook post the og image is not appearing.&amp;nbsp; Any help is appreciated.&amp;nbsp; Thanks!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;site: &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://www.crowsnestnewport.com/" rel="nofollow" target="_blank"&gt;http://www.crowsnestnewport.com/&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;(&amp;lt;&lt;span class="start-tag"&gt;meta &lt;span class="attribute-name"&gt;property&lt;/span&gt;="&lt;a class="attribute-value"&gt;og:image&lt;/a&gt;" &lt;span class="attribute-name"&gt;content&lt;/span&gt;="&lt;a class="attribute-value"&gt;http://crowsnestnewport.com/images/cn-logo-share.png&lt;/a&gt;" /&amp;gt;)&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:4a5d0a84-d881-4270-83f3-c5bcfafa6504] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">open_graph_tag</category>
      <pubDate>Mon, 15 Apr 2013 20:17:42 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1192489</guid>
      <dc:date>2013-04-15T20:17:42Z</dc:date>
      <clearspace:dateToText>1 year 6 months ago</clearspace:dateToText>
      <clearspace:messageCount>4</clearspace:messageCount>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>css height property application on fluid grid layout</title>
      <link>https://forums.adobe.com/thread/1113962</link>
      <description>&lt;!-- [DocumentBodyStart:6a0646da-a004-42b0-88ca-96ff2f7ee927] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi, I'm totally new to fluid grid layout and just got started in it. I have a div tag that has 5px height and I sucessfully applied that and seem fine only on Tablet landscape (1024x768) and Small tablet landscape (800x600), nevertheless it isn't even displaying on Mobile portrait (320x480), Mobile landscape (480x320), Small tablet portrait (600x800) and Tablet portrait (768x1024). &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My coding is below&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;index.html&lt;/p&gt;&lt;!--[CodeBlockStart:fc2f958f-c1cc-4672-a8d7-8f3730e43f63][excluded]--&gt;&lt;pre class="plain" name="code"&gt;&amp;lt;!doctype html&amp;gt;
&amp;lt;!--[if lt IE 7]&amp;gt; &amp;lt;html class="ie6 oldie"&amp;gt; &amp;lt;![endif]--&amp;gt;
&amp;lt;!--[if IE 7]&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;html class="ie7 oldie"&amp;gt; &amp;lt;![endif]--&amp;gt;
&amp;lt;!--[if IE 8]&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;html class="ie8 oldie"&amp;gt; &amp;lt;![endif]--&amp;gt;
&amp;lt;!--[if gt IE 8]&amp;gt;&amp;lt;!--&amp;gt;
&amp;lt;html class=""&amp;gt;
&amp;lt;!--&amp;lt;![endif]--&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;meta charset="utf-8"&amp;gt;
&amp;lt;meta name="viewport" content="width=device-width, initial-scale=1"&amp;gt;
&amp;lt;title&amp;gt;Untitled Document&amp;lt;/title&amp;gt;
&amp;lt;link href="fluid.grid.layout/boilerplate.css" rel="stylesheet" type="text/css"&amp;gt;
&amp;lt;link href="fluid.grid.layout/style.css" rel="stylesheet" type="text/css"&amp;gt;
&amp;lt;!-- 
To learn more about the conditional comments around the html tags at the top of the file:
paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/


Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
* insert the link to your js here
* remove the link below to the html5shiv
* add the "no-js" class to the html tags at the top
* you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build 
--&amp;gt;
&amp;lt;!--[if lt IE 9]&amp;gt;
&amp;lt;script src="//html5shiv.googlecode.com/svn/trunk/html5.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;![endif]--&amp;gt;
&amp;lt;script src="fluid.grid.layout/respond.min.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;div class="gridContainer clearfix"&amp;gt;
&amp;nbsp; &amp;lt;div id="LayoutDiv1"&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;

&lt;/pre&gt;&lt;!--[CodeBlockEnd:fc2f958f-c1cc-4672-a8d7-8f3730e43f63]--&gt;&lt;div style="display:none;"&gt;&lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;boilerplate.css&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;!--[CodeBlockStart:80e90283-52dc-4dc9-bfde-34d63fa36f14][excluded]--&gt;&lt;pre class="plain" name="code"&gt;@charset "utf-8";
/*
/* 
 * HTML5 ✰ Boilerplate
 *
 * What follows is the result of much research on cross-browser styling. 
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 *
 * Detailed information about this CSS: h5bp.com/css
 * 
 * Dreamweaver modifications:
 * 1. Commented out selection highlight
 * 2. Removed media queries section (we add our own in a separate file)
 *
 * ==|== normalize ==========================================================
 */




/* =============================================================================
&amp;nbsp;&amp;nbsp; HTML5 display definitions
&amp;nbsp;&amp;nbsp; ========================================================================== */


article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }


/* =============================================================================
&amp;nbsp;&amp;nbsp; Base
&amp;nbsp;&amp;nbsp; ========================================================================== */


/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Force vertical scrollbar in non-IE
 * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */


html { font-size: 100%; overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }


body { margin: 0; font-size: 13px; line-height: 1.231; }


body, button, input, select, textarea { font-family: sans-serif; color: #222; }


/* 
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */


/* Dreamweaver: uncomment these if you do want to customize the selection highlight
 *::-moz-selection { background: #fe57a1; color: #fff; text-shadow: none; }
 *::selection { background: #fe57a1; color: #fff; text-shadow: none; }
 */


/* =============================================================================
&amp;nbsp;&amp;nbsp; Links
&amp;nbsp;&amp;nbsp; ========================================================================== */


a { color: #00e; }
a:visited { color: #551a8b; }
a:hover { color: #06e; }
a:focus { outline: thin dotted; }


/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover, a:active { outline: 0; }




/* =============================================================================
&amp;nbsp;&amp;nbsp; Typography
&amp;nbsp;&amp;nbsp; ========================================================================== */


abbr[title] { border-bottom: 1px dotted; }


b, strong { font-weight: bold; }


blockquote { margin: 1em 40px; }


dfn { font-style: italic; }


hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }


ins { background: #ff9; color: #000; text-decoration: none; }


mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }


/* Redeclare monospace font family: h5bp.com/j */
pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }


/* Improve readability of pre-formatted text in all browsers */
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }


q { quotes: none; }
q:before, q:after { content: ""; content: none; }


small { font-size: 85%; }


/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }




/* =============================================================================
&amp;nbsp;&amp;nbsp; Lists
&amp;nbsp;&amp;nbsp; ========================================================================== */


ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }




/* =============================================================================
&amp;nbsp;&amp;nbsp; Embedded content
&amp;nbsp;&amp;nbsp; ========================================================================== */


/*
 * 1. Improve image quality when scaled in IE7: h5bp.com/d
 * 2. Remove the gap between images and borders on image containers: h5bp.com/e 
 */


img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }


/*
 * Correct overflow not hidden in IE9 
 */


svg:not(:root) { overflow: hidden; }




/* =============================================================================
&amp;nbsp;&amp;nbsp; Figures
&amp;nbsp;&amp;nbsp; ========================================================================== */


figure { margin: 0; }




/* =============================================================================
&amp;nbsp;&amp;nbsp; Forms
&amp;nbsp;&amp;nbsp; ========================================================================== */


form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }


/* Indicate that 'label' will shift focus to the associated form element */
label { cursor: pointer; }


/* 
 * 1. Correct color not inheriting in IE6/7/8/9 
 * 2. Correct alignment displayed oddly in IE6/7 
 */


legend { border: 0; *margin-left: -7px; padding: 0; }


/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */


button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }


/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 * 2. Correct inner spacing displayed oddly in IE6/7
 */


button, input { line-height: normal; *overflow: visible; }


/*
 * Reintroduce inner spacing in 'table' to avoid overlap and whitespace issues in IE6/7
 */


table button, table input { *overflow: auto; }


/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 */


button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }


/*
 * Consistent box sizing and appearance
 */


input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }


/* 
 * Remove inner padding and border in FF3/4: h5bp.com/l 
 */


button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }


/* 
 * 1. Remove default vertical scrollbar in IE6/7/8/9 
 * 2. Allow only vertical resizing
 */


textarea { overflow: auto; vertical-align: top; resize: vertical; }


/* Colors for form validity */
input:valid, textarea:valid {&amp;nbsp; }
input:invalid, textarea:invalid { background-color: #f0dddd; }




/* =============================================================================
&amp;nbsp;&amp;nbsp; Tables
&amp;nbsp;&amp;nbsp; ========================================================================== */


table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }




/* ==|== primary styles =====================================================
&amp;nbsp;&amp;nbsp; Author: 
&amp;nbsp;&amp;nbsp; ========================================================================== */
































/* ==|== non-semantic helper classes ========================================
&amp;nbsp;&amp;nbsp; Please define your styles before this section.
&amp;nbsp;&amp;nbsp; ========================================================================== */


/* For image replacement */
.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; }
.ir br { display: none; }


/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden { display: none !important; visibility: hidden; }


/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }


/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }


/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }


/* Contain floats: h5bp.com/q */ 
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }




/* ==|== print styles =======================================================
&amp;nbsp;&amp;nbsp; Print styles.
&amp;nbsp;&amp;nbsp; Inlined to avoid required HTTP connection: h5bp.com/r
&amp;nbsp;&amp;nbsp; ========================================================================== */

 @media print {
&amp;nbsp; * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */
&amp;nbsp; a, a:visited { text-decoration: underline; }
&amp;nbsp; a[href]:after { content: " (" attr(href) ")"; }
&amp;nbsp; abbr[title]:after { content: " (" attr(title) ")"; }
&amp;nbsp; .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }&amp;nbsp; /* Don't show links for images, or javascript/internal links */
&amp;nbsp; pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
&amp;nbsp; thead { display: table-header-group; } /* h5bp.com/t */
&amp;nbsp; tr, img { page-break-inside: avoid; }
&amp;nbsp; img { max-width: 100% !important; }
&amp;nbsp; @page { margin: 0.5cm; }
&amp;nbsp; p, h2, h3 { orphans: 3; widows: 3; }
&amp;nbsp; h2, h3 { page-break-after: avoid; }
}

&lt;/pre&gt;&lt;!--[CodeBlockEnd:80e90283-52dc-4dc9-bfde-34d63fa36f14]--&gt;&lt;div style="display:none;"&gt;&lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;style.css&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;!--[CodeBlockStart:6d550811-335a-4e03-98f5-68af59fc4882][excluded]--&gt;&lt;pre class="plain" name="code"&gt;@charset "utf-8";
/* Simple fluid media
&amp;nbsp;&amp;nbsp; Note: Fluid media requires that you remove the media's height and width attributes from the HTML
&amp;nbsp;&amp;nbsp; http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;width:100%;
}


/*
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Dreamweaver Fluid Grid Properties
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;----------------------------------
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;dw-num-cols-mobile:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;4;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;dw-num-cols-tablet:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;8;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;dw-num-cols-desktop:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;10;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;dw-gutter-percentage:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;25;
&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Inspiration from "Responsive Web Design" by Ethan Marcotte 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;http://www.alistapart.com/articles/responsive-web-design
&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;and Golden Grid System by Joni Korpi
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;http://goldengridsystem.com/
*/


/* Mobile Layout: 480px and below. */


.gridContainer {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;margin-left: auto;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;margin-right: auto;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;width: 85.5%;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;padding-left: 2.25%;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;padding-right: 2.25%;
}
#LayoutDiv1 {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;clear: both;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;float: left;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;margin-left: 0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;width: 100%;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;height:5px;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;display: block;
}


/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */


@media only screen and (min-width: 481px) {
.gridContainer {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;width: 97.5%;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;padding-left: 1.25%;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;padding-right: 1.25%;
}
#LayoutDiv1 {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;clear: both;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;float: left;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;margin-left: 0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;width: 100%;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;height:5px;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;display: block;
}
}


/* Desktop Layout: 769px to a max of 1232px.&amp;nbsp; Inherits styles from: Mobile Layout and Tablet Layout. */


@media only screen and (min-width: 769px) {
.gridContainer {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;width: 98%;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;max-width: 1232px;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;padding-left: 1%;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;padding-right: 1%;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;margin: auto;
}
#LayoutDiv1 {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;clear: both;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;float: left;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;margin-left: 0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;width: 100%;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;display: block;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;height:5px;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;background-color:#FBB829;
}
}

&lt;/pre&gt;&lt;!--[CodeBlockEnd:6d550811-335a-4e03-98f5-68af59fc4882]--&gt;&lt;div style="display:none;"&gt;&lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;respond.min.js&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;!--[CodeBlockStart:f375e4c6-39c7-4dfa-bf1c-b51c79040c9a][excluded]--&gt;&lt;pre class="plain" name="code"&gt;/*! Respond.js v1.0.1pre: min/max-width media query polyfill. (c) Scott Jehl. MIT/GPLv2 Lic. j.mp/respondjs&amp;nbsp; */
(function(e,h){e.respond={};respond.update=function(){};respond.mediaQueriesSupported=h;if(h){return}var u=e.document,r=u.documentElement,i=[],k=[],p=[],o={},g=30,f=u.getElementsByTagName("head")[0]||r,b=f.getElementsByTagName("link"),d=[],a=function(){var B=b,w=B.length,z=0,y,x,A,v;for(;z&amp;lt;w;z++){y=B[z],x=y.href,A=y.media,v=y.rel&amp;amp;&amp;amp;y.rel.toLowerCase()==="stylesheet";if(!!x&amp;amp;&amp;amp;v&amp;amp;&amp;amp;!o[x]){if(y.styleSheet&amp;amp;&amp;amp;y.styleSheet.rawCssText){m(y.styleSheet.rawCssText,x,A);o[x]=true}else{if(!/^([a-zA-Z]+?:(\/\/)?)/.test(x)||x.replace(RegExp.$1,"").split("/")[0]===e.location.host){d.push({href:x,media:A})}}}}t()},t=function(){if(d.length){var v=d.shift();n(v.href,function(w){m(w,v.href,v.media);o[v.href]=true;t()})}},m=function(G,v,x){var E=G.match(/@media[^\{]+\{([^\{\}]+\{[^\}\{]+\})+/gi),H=E&amp;amp;&amp;amp;E.length||0,v=v.substring(0,v.lastIndexOf("/")),w=function(I){return I.replace(/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,"$1"+v+"$2$3")},y=!H&amp;amp;&amp;amp;x,B=0,A,C,D,z,F;if(v.length){v+="/"}if(y){H=1}for(;B&amp;lt;H;B++){A=0;if(y){C=x;k.push(w(G))}else{C=E[B].match(/@media ([^\{]+)\{([\S\s]+?)$/)&amp;amp;&amp;amp;RegExp.$1;k.push(RegExp.$2&amp;amp;&amp;amp;w(RegExp.$2))}z=C.split(",");F=z.length;for(;A&amp;lt;F;A++){D=z[A];i.push({media:D.match(/(only\s+)?([a-zA-Z]+)(\sand)?/)&amp;amp;&amp;amp;RegExp.$2,rules:k.length-1,minw:D.match(/\(min\-width:[\s]*([\s]*[0-9]+)px[\s]*\)/)&amp;amp;&amp;amp;parseFloat(RegExp.$1),maxw:D.match(/\(max\-width:[\s]*([\s]*[0-9]+)px[\s]*\)/)&amp;amp;&amp;amp;parseFloat(RegExp.$1)})}}j()},l,q,j=function(E){var v="clientWidth",x=r[v],D=u.compatMode==="CSS1Compat"&amp;amp;&amp;amp;x||u.body[v]||x,z={},C=u.createDocumentFragment(),B=b[b.length-1],w=(new Date()).getTime();if(E&amp;amp;&amp;amp;l&amp;amp;&amp;amp;w-l&amp;lt;g){clearTimeout(q);q=setTimeout(j,g);return}else{l=w}for(var y in i){var F=i[y];if(!F.minw&amp;amp;&amp;amp;!F.maxw||(!F.minw||F.minw&amp;amp;&amp;amp;D&amp;gt;=F.minw)&amp;amp;&amp;amp;(!F.maxw||F.maxw&amp;amp;&amp;amp;D&amp;lt;=F.maxw)){if(!z[F.media]){z[F.media]=[]}z[F.media].push(k[F.rules])}}for(var y in p){if(p[y]&amp;amp;&amp;amp;p[y].parentNode===f){f.removeChild(p[y])}}for(var y in z){var G=u.createElement("style"),A=z[y].join("\n");G.type="text/css";G.media=y;if(G.styleSheet){G.styleSheet.cssText=A}else{G.appendChild(u.createTextNode(A))}C.appendChild(G);p.push(G)}f.insertBefore(C,B.nextSibling)},n=function(v,x){var w=c();if(!w){return}w.open("GET",v,true);w.onreadystatechange=function(){if(w.readyState!=4||w.status!=200&amp;amp;&amp;amp;w.status!=304){return}x(w.responseText)};if(w.readyState==4){return}w.send(null)},c=(function(){var v=false;try{v=new XMLHttpRequest()}catch(w){v=new ActiveXObject("Microsoft.XMLHTTP")}return function(){return v}})();a();respond.update=a;function s(){j(true)}if(e.addEventListener){e.addEventListener("resize",s,false)}else{if(e.attachEvent){e.attachEvent("onresize",s)}}})(this,(function(f){if(f.matchMedia){return true}var e,i=document,c=i.documentElement,g=c.firstElementChild||c.firstChild,h=!i.body,d=i.body||i.createElement("body"),b=i.createElement("div"),a="only all";b.id="mq-test-1";b.style.cssText="position:absolute;top:-99em";d.appendChild(b);b.innerHTML='_&amp;lt;style media="'+a+'"&amp;gt; #mq-test-1 { width: 9px; }&amp;lt;/style&amp;gt;';if(h){c.insertBefore(d,g)}b.removeChild(b.firstChild);e=b.offsetWidth==9;if(h){c.removeChild(d)}else{d.removeChild(b)}return e})(this));

&lt;/pre&gt;&lt;!--[CodeBlockEnd:f375e4c6-39c7-4dfa-bf1c-b51c79040c9a]--&gt;&lt;div style="display:none;"&gt;&lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I really do appreciate your efforts to help me solve this problem... Thank you in advance &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:6a0646da-a004-42b0-88ca-96ff2f7ee927] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">height:</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">fluid_design</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">fluid_grid_layout_div</category>
      <pubDate>Wed, 12 Dec 2012 11:30:52 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1113962</guid>
      <dc:date>2012-12-12T11:30:52Z</dc:date>
      <clearspace:dateToText>1 year 11 months ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>{module_captchav2} and HTML5 code validation</title>
      <link>https://forums.adobe.com/thread/1089137</link>
      <description>&lt;!-- [DocumentBodyStart:de72c6e5-0db6-495d-ab6d-d19b7bae97b0] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I'm using {module_captchaV2} on a newsletter sign-up on an HTML5 page.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;When I run it through W3 validator (&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://validator.w3.org" rel="nofollow" target="_blank"&gt;http://validator.w3.org&lt;/a&gt;&lt;span&gt; ) it shows 3 errors relating to the CAPTCHA part of my form.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ul&gt;&lt;li&gt; &lt;span class="err_type"&gt;&lt;a href="http://validator.w3.org/images/info_icons/error.png"&gt;&lt;img alt="Error" src="http://validator.w3.org/images/info_icons/error.png" title="Error"/&gt;&lt;/a&gt;&lt;/span&gt;&amp;nbsp; &lt;em&gt;Line 1694, Column 115&lt;/em&gt;: &lt;span class="msg"&gt;&amp;amp; did not start a character reference. (&lt;strong style="color: #ff0000;"&gt;&amp;amp;&lt;/strong&gt; probably should have been escaped as &lt;span style="color: #ff0000;"&gt;&lt;strong&gt;&amp;amp;amp;&lt;/strong&gt;&lt;/span&gt;.)&lt;/span&gt; &lt;code class="input"&gt;&amp;hellip;hx?ID=f0447d28bc1243edb63fdab03984ffb1&lt;span style="color: #ff0000;"&gt;&lt;strong title="Position where error was detected."&gt;&amp;amp;&lt;/strong&gt;&lt;/span&gt;Color=DimGray&lt;strong style="color: #ff0000;"&gt;&amp;amp;&lt;/strong&gt;ForeColor=White&lt;strong style="color: #ff0000;"&gt;&amp;amp;&lt;/strong&gt;Width=160&amp;hellip;&lt;/code&gt;&lt;p class="helpwanted"&gt; &lt;a class="jive-link-external-small" href="http://validator.w3.org/feedback.html?uri=http%3A%2F%2Fsouthside-shops.e-strandsabc.co.uk%2Findex.htm;errmsg_id=html5#errormsg" rel="nofollow"&gt;✉&lt;/a&gt;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;/li&gt;&lt;li&gt; &lt;span class="err_type"&gt;&lt;a href="http://validator.w3.org/images/info_icons/error.png"&gt;&lt;img alt="Error" src="http://validator.w3.org/images/info_icons/error.png" title="Error"/&gt;&lt;/a&gt;&lt;/span&gt;&amp;nbsp; &lt;em&gt;Line 1694, Column 129&lt;/em&gt;: &lt;span class="msg"&gt;&amp;amp; did not start a character reference. (&amp;amp; probably should have been escaped as &amp;amp;amp;.)&lt;/span&gt; &lt;code class="input"&gt;&amp;hellip;bc1243edb63fdab03984ffb1&amp;amp;Color=DimGray&lt;strong title="Position where error was detected."&gt;&amp;amp;&lt;/strong&gt;ForeColor=White&amp;amp;Width=160" alt="Captcha&amp;hellip;&lt;/code&gt;&lt;p class="helpwanted"&gt; &lt;a class="jive-link-external-small" href="http://validator.w3.org/feedback.html?uri=http%3A%2F%2Fsouthside-shops.e-strandsabc.co.uk%2Findex.htm;errmsg_id=html5#errormsg" rel="nofollow"&gt;✉&lt;/a&gt;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;/li&gt;&lt;li&gt; &lt;span class="err_type"&gt;&lt;a href="http://validator.w3.org/images/info_icons/error.png"&gt;&lt;img alt="Error" src="http://validator.w3.org/images/info_icons/error.png" title="Error"/&gt;&lt;/a&gt;&lt;/span&gt;&amp;nbsp; &lt;em&gt;Line 1694, Column 145&lt;/em&gt;: &lt;span class="msg"&gt;&amp;amp; did not start a character reference. (&amp;amp; probably should have been escaped as &amp;amp;amp;.)&lt;/span&gt; &lt;code class="input"&gt;&amp;hellip;03984ffb1&amp;amp;Color=DimGray&amp;amp;ForeColor=White&lt;strong title="Position where error was detected."&gt;&amp;amp;&lt;/strong&gt;Width=160" alt="Captcha Image" /&amp;gt;&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The quick fix is replace the &amp;amp;'s with &amp;amp;amp; but this is code I can't seem to find to amend.&amp;nbsp; I assume this is 'server-side'?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is there another way around this?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Regards&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Mike&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:de72c6e5-0db6-495d-ab6d-d19b7bae97b0] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">validation</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">captcha</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">w3</category>
      <pubDate>Fri, 26 Oct 2012 23:31:54 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1089137</guid>
      <dc:date>2012-10-26T23:31:54Z</dc:date>
      <clearspace:dateToText>2 years 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>5</clearspace:messageCount>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>using JS to open code in a div tag instead of new window</title>
      <link>https://forums.adobe.com/thread/1015405</link>
      <description>&lt;!-- [DocumentBodyStart:cb89d07b-d700-4203-b150-7dc385d28623] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;span&gt;I posted this originally here &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://forums.adobe.com/message/4450227#4450227#4450227" rel="nofollow" target="_blank"&gt;http://forums.adobe.com/message/4450227#4450227&lt;/a&gt;&lt;span&gt; and was directed to this forum.&amp;nbsp; I believe it is a simple solution but I don't have the code skills to write by scratch.&amp;nbsp; I just normall hack through things but I can't find an example of what I am looking for.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Original question&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I created a database for store locations.&amp;nbsp; I was able to display the list of stores.&amp;nbsp; Here though I don't want the list to show the number in front of it...&amp;nbsp; I still need to find the CSS to edit my results for this one.&amp;nbsp; However, more importantly, I don't want to open my results in a new window, I want to be able to target a DIV tag instead.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This is the code that is created to display the list of stores. &lt;/p&gt;&lt;p&gt;{module_webapps,5665,a,,,_blank,,50,,1}&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Currently it opens a blank window.&amp;nbsp; I'd like to target a div tag on the right of the list area where the store info can appear.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Perhaps the gurus at adobe can upgrade this feature?&amp;nbsp; Target DIVs instead of new or blank windows, or using frames. Below is the screen of the links created from the DB.&lt;/p&gt;&lt;p&gt;&lt;a data-containerId="-1" data-containerType="-1" data-objectId="200759" data-objectType="111" href="/servlet/JiveServlet/downloadImage/2-4447779-200759/help1.jpg"&gt;&lt;img alt="help1.jpg" class="jive-image" height="524" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-4447779-200759/help1.jpg" width="284"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Below is the blank window that it opens.&lt;/p&gt;&lt;p&gt;Would like to make it open in a div to the right of the list.&amp;nbsp; Not sure how to change to core code that was created to make that change.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a data-containerId="-1" data-containerType="-1" data-objectId="200761" data-objectType="111" href="/servlet/JiveServlet/downloadImage/2-4447779-200761/Help2.jpg"&gt;&lt;img alt="Help2.jpg" class="jive-image jive-image-thumbnail" height="324" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-4447779-200761/Help2.jpg" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Mario responded with &lt;/p&gt;&lt;p class="font-color-meta jive-thread-reply-subject" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="jive-reply-thread-username"&gt; &lt;a class="jive-link-message-small" data-containerId="4710" data-containerType="14" data-objectId="4450227" data-objectType="2" href="https://forums.adobe.com/message/4450227#4450227"&gt;1.&lt;/a&gt; &lt;a class="jiveTT-hover-user jive-link-profile-small" data-containerId="-1" data-containerType="-1" data-objectId="822747" data-objectType="3" href="https://forums.adobe.com/people/mario_gudelj"&gt;mario_gudelj&lt;/a&gt;, &lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="adobeBoldFamily orange jive-user-statusLevel"&gt; Adobe Employee &lt;/p&gt;&lt;p class="jive-thread-reply-date"&gt;&amp;nbsp; &lt;span class="reply-date-cc"&gt;May 30, 2012&lt;/span&gt; &lt;span class="reply-time-cc"&gt;5:08 AM&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;a class="jive-link-message-small" data-containerId="4710" data-containerType="14" data-objectId="4447779" data-objectType="2" href="https://forums.adobe.com/message/4447779#4447779"&gt;in reply to QreusJorj&lt;/a&gt;&amp;nbsp; &lt;/p&gt;&lt;p class="jive-abuse-btn-cc right20"&gt; &lt;a class="" href="https://forums.adobe.com/message-abuse!input.jspa?objectID=4450227&amp;amp;objectType=2"&gt;&lt;span class="jive-icon-warn jive-icon-sml"&gt;&lt;/span&gt;Report&lt;/a&gt; &lt;/p&gt;&lt;/div&gt;&lt;p&gt;Hi QreusJorj,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The way I'd do that is to use {tag_name_value} to obtain the the path to the detail view and then use jQuery's .load() to pull in the detail view of the web app and render it in the targeted div. See &lt;a class="jive-link-external-small" href="http://api.jquery.com/load/" rel="nofollow" target="_blank"&gt;http://api.jquery.com/load/&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I guess it'd look like this in the list view:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;$('#result').load('{tag_name_value');&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;where "result" is the ID of the div you want to display the detail view in.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Cheers,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Mario&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;He continued to suggest trying this area or find somebody that can implement.&amp;nbsp; Looking to resolve this as it is holding up the launch of the new site.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:cb89d07b-d700-4203-b150-7dc385d28623] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">css</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">js</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">onclick</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">.load()</category>
      <pubDate>Fri, 01 Jun 2012 03:41:57 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1015405</guid>
      <dc:date>2012-06-01T03:41:57Z</dc:date>
      <clearspace:dateToText>2 years 5 months ago</clearspace:dateToText>
      <clearspace:messageCount>9</clearspace:messageCount>
      <clearspace:replyCount>8</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

