Hi everyone, I am stuck on a problem and hoping to find a way around it. I have a page that has a bunch of links. The links that I would like to include in the greybox I put rel="gb_pageset[search_sites]".
However, I also have a hidden row that turns visible and hidden depending on the user's preference. In that row I have some links. If the user decides to turn the visiablity to show, then I would like to have those links be included in the gb_pageset[search_sites]", if they chose not not see it then those links will not be included. So what I did was: <a id="boa" href="http://www.bankofamerica">Bank of America</a> function boaLinks(){ var anchors = document.getElementById("boa"); anchors.setAttribute("rel","gb_pageset[search_sites]"); } this function above will be executed by onload. So if the user wants to view the row, then that link will get the rel = gb_pageset[search_sites] What IE does is put that to memory rather than re-write the html as <a id="boa" href="http://www.bankofamerica" rel = "gb_pageset [search_sites]" >Bank of America</a> So my question is does greybox only scan for gb_pageset[search_sites] in the codes and not at all in memory? if I did this: anchors.setAttribute("target","_blank"); the link will open in a new window so I know the function works. Any suggestions on how to accomplish this? Thanks Donny --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "GreyBox" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/greybox?hl=en -~----------~----~----~----~------~----~------~--~---

