CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: websmith99

Page 1 of 9 1 2 3 4

Search: Search took 0.12 seconds.

  1. Is this happening with all browsers, or just a...

    Is this happening with all browsers, or just a specific version of Netscape or IE?
  2. Are you saying that if someone clicks on an image...

    Are you saying that if someone clicks on an image in the main window to launch the popup window for that item before the image in the main window has fully loaded, then the image will display in the...
  3. Replies
    5
    Views
    1,012

    It should work in Mozilla, since it supports the...

    It should work in Mozilla, since it supports the W3C DOM
  4. Replies
    5
    Views
    1,012

    Which version of Netscape are you referring to? ...

    Which version of Netscape are you referring to?

    It will never work with Netscape 4.x because it uses W3C DOM JavaScript methods such as appendChild() for dynamically changing a node tree on the...
  5. Replies
    1
    Views
    817

    This has been answered a few times before. Could...

    This has been answered a few times before. Could you please search the archive.
  6. Replies
    3
    Views
    1,101

    Here you go: http://www.customtoolbar.com/ ...

    Here you go:

    http://www.customtoolbar.com/

    ...but it will cost you $99 U.S.
  7. Why not parse the data server-side using JSP and...

    Why not parse the data server-side using JSP and remove the carriage return?
  8. Replies
    3
    Views
    814

    Correct. On an image object, you can read the...

    Correct. On an image object, you can read the complete property to see if an image load is complete. This boolean property will return either a true or false.

    if...
  9. This is even easier! To turn off autocomplete...

    This is even easier!

    To turn off autocomplete in a form element:
    <input type="password" AUTOCOMPLETE="off" />

    To turn off autocomplete for the entire form:
    <form name="foo" action="foo.jsp"...
  10. Replies
    1
    Views
    659

    Did you try ...

    Did you try

    top.frame_name_in_top_frame.document.form_name_in_top_frame.bid.value
  11. The end user can turn off the autocomplete...

    The end user can turn off the autocomplete feature of IE by doing the following:

    For IE 6

    1. From the "Tools" menu, select "Internet Options..."
    2. In the "Internet Options" dialog box,...
  12. Replies
    2
    Views
    851

    What version of IE and Windows are you using? ...

    What version of IE and Windows are you using?

    Do you ever get the dialog box that says a script is causing the program to run slowly?

    Are any JavaScript errors occuring/generated?

    Does the...
  13. http://www.dannyg.com/ref/javavsjavascript.html ...

    http://www.dannyg.com/ref/javavsjavascript.html

    http://www.meridiantd.co.uk/development/pages/web/technology/jvj.asp

    http://www.superconnect.com/writershelp/javascript.htm
  14. View Post

    <script language="JavaScript" type="text/javascript">

    if (document.yourformname.textbox) {
    // the text field is present
    } else {
    // the text field is not present
    }
  15. Replies
    2
    Views
    760

    Of course. Here's a nice cross browser one done...

    Of course. Here's a nice cross browser one done with DHTML:

    http://www.simplythebest.net/info/javascript48.html

    Note: when using Netscape 4.x or Netscape 6.x, make sure that there is not any...
  16. Why are you restricted to not using JavaScript?

    Why are you restricted to not using JavaScript?
  17. Replies
    1
    Views
    691

    Here's a nice example: ...

    Here's a nice example:

    http://archive.devx.com/dhtml/articles/nm061102/slider.html
  18. Replies
    1
    Views
    1,497

    I was able to resolve this. It requires an XSLT...

    I was able to resolve this. It requires an XSLT extension that is not part of the W3C standard and will not work on all parsers, but it works for the parser that I use - Xalan.

    In the XSL file,...
  19. Seems to me that for security reasons, the user...

    Seems to me that for security reasons, the user will always receive a dialog box asking them if they wish to download the file.
  20. Replies
    2
    Views
    766

    saddysans is correct. Use the indexOf() method. ...

    saddysans is correct. Use the indexOf() method.

    Also, you should not declare a variable with the name "index" as that is a reserved word in JavaScript.
  21. document.forms['yourformname'].elements['selectnam...

    document.forms['yourformname'].elements['selectname'].options[document.forms['yourformname'].elements['selectname'].selectedIndex].text


    :cool:
  22. Replies
    1
    Views
    1,497

    A sorted XPATH location

    I was wondering if it's possible to sort an XPATH location. Here
    is basically what I'm trying to solve:

    The XML document is of the following format:

    <?xml version="1.0"?>
    <?xml-stylesheet...
  23. Replies
    2
    Views
    721

    Of course. You are not using the full power of...

    Of course. You are not using the full power of CSS.

    Give the specific link a CSS class:

    <a href="foo.jsp" class="smallfont">my page</a>

    Now add the class definition to the style sheet:
    ...
  24. Replies
    1
    Views
    940

    This may not be available anymore, or the name...

    This may not be available anymore, or the name may have been changed. It was part of the Server Scriptlet Package.
    ...
  25. Thread: Css

    by websmith99
    Replies
    3
    Views
    809

    If you are using some particular CSS property...

    If you are using some particular CSS property that works fine in all browsers that you support EXCEPT Netscape 4.77 (Mac or PC?) then just do browser detection and serve a different stylesheet for...
Results 1 to 25 of 201
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured