Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. dranium

    VBSCRIPT - Get attribute for parent node

    Hello, I will try to describe the best I can what I am trying to accomplish. I am parsing out this xml file into a javascript file. I have everything working and I am at my last step where I need to place the menu in the right spot. I will show you the important bits of code + xml to...
  2. dranium

    Microsoft LRN viewer - XML IE Only

    I am using Microsoft LRN viewer to view courses but the courses do not load in FireFox. Here is the function being used but it is using ActiveX. Is it possible that this function can be switched to be compatible with FireFox? function LoadXML ( strXML ) { try { if(("string" !=...
  3. dranium

    Frames + window.parent

    I switch this... <a href="javascript:window.parent.navbody.pag_vars(1,9);window.parent.navbody.questionform.submit();" >9</a> To this... <a href="javascript:window.parent.navbody.pag_vars(1,9);window.parent.navbody.document.forms.questionform.submit();" >9</a>
  4. dranium

    Frames + window.parent

    Thanks for the reply Dan, your code didn't work but it helped me figure out why it wasn't working. I needed to add document.forms in my code and now everything works with FireFox.
  5. dranium

    Frames + window.parent

    Hello, I have a site that contains 2 frames, the main frame which contains the question and my bottom frame which contains numbering from 1 to 10. This code works great in IE browsers but when I try to use this in FireFox nothing happens when I click on the numbering. Is there a different way...
  6. dranium

    Navigation only showing on 1 page

    I am using the following code to display my navigation. It reads the pages from my Global Navigation but only on the main page. When I click on a menu item (Pages/test.aspx) my menu items disappears. Is there anything I can modify in my code to prevent this? Here is the code... <asp:Menu...
  7. dranium

    Sharepoint Navigation - Remove Tables

    Sorry for the late reply. I finally had the chance to follow the steps on the web site and got this working. Thank you for the help.
  8. dranium

    Sharepoint Navigation - Remove Tables

    I would also like to add I am using Sharepoint 2007.
  9. dranium

    Sharepoint Navigation - Remove Tables

    Hello, Can anyone tell me how I can get rid of the html tables in the top navigation of Sharepoint? I found a site that sais to implement CSS friendly ASP.NET 2.0 control adapters. In the instructions I need Visual Studio 2005, I only have Visual Studio 2008. Is this a problem? Can anyone...
  10. dranium

    Scrolling Thumbnails

    Hello, I have a gallery website that is currently only on my localhost, unfortunately I cannot provide a link. I am currently using this script http://www.php-help.ro/examples/mootools_rotator/ for my thumbnails to scroll left and right. Everything is working great when I click on the...
  11. dranium

    Using removechild

    This message can be ignored. I figured out how to do this using parentNode.
  12. dranium

    Using removechild

    Is it possible to remove everything that is inside my <item> node? I am using ASP. xmlDoc=loadXMLDoc("sports.xml") set y= xmlDoc.getElementsByTagName("channel/item")(0) xmlDoc.documentElement.removeChild(y) <?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet...
  13. dranium

    XML + ASP Append

    This works great! Thank you for the help tsuji.
  14. dranium

    XML + ASP Append

    The final result would be... <rss> <contact> <item> <name>1st person</name> </item> <item> <name>2nd person</name> </item> </contact> </rss>
  15. dranium

    XML + ASP Append

    Is it possible to pick which XML node to write to? Right now the script is currently writing into the <RSS> node. I want everything to write in the <contact> node. So the final result would be <rss><contact><name>My Name</name></contact></rss> Here is what it currently does. Contact.XML...

Part and Inventory Search

Back
Top