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 strongm 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. AndrewGrabovsky

    loading page in a frame of another window.

    Here it is: Add this script to <HEAD> section: function loadAll() { parent.frame1.location.href= &quot;first.htm&quot;; parent.frame2.location.href= &quot;second.htm&quot;; } Add this to navigation frame: <a href=&quot;javascript:loadAll()&quot;>first and second</a> Dont forget to...
  2. AndrewGrabovsky

    How to delete selected with a mouse text from textarea???.

    Hi Sergei! Sorry, but it seems that you cannot do this. I think it's impossible to track the position in text field/area where mouse is clicked and cursor is positioned.
  3. AndrewGrabovsky

    Calculating Pi in Javascript!

    Hi sdfx! If you just need PI constant you don't even need to calculate anything: pi = Math.PI; Remember - PI should be uppercased!
  4. AndrewGrabovsky

    Tags

    Hi calista! You can NOT define your own tags. What you can do is to redefine the existing ones using: 1. classes: .classname { } 2. selectors: #selector { } You may even combine both of them like this: <p class=&quot;this_one&quot; id=&quot;that_one&quot;> It's quite enough to create...
  5. AndrewGrabovsky

    Insert HTML in HTML

    Probably the best way is to use SSI. Learn it - it shouldn't be complicated.
  6. AndrewGrabovsky

    Problem with InputField validation in Netscape

    Hi RainerOesterlein! I looked trough your code and didn't find anything bad. Sorry, have no time to test it. Try to change onBlur=&quot;Check(fld_eingabe10)&quot; to this: onBlur=&quot;Check(this.value)&quot; function Check(Eingabefeld) {   if (Eingabefeld == &quot;&quot;) . . . . Hope it...
  7. AndrewGrabovsky

    Need help with an IE/Netscape problem

    Hi wvmikep! >>The IE Problem:  There's a gap between >>the right edge of the table and the scrollbar >>of the browser.  (works in Netscape) I have IE5.0 and don't see any gap. >>The Netscape (4.7) Problem: The black >>vertical lines (left and right side of menu) >>are displaying as too...
  8. AndrewGrabovsky

    How to let visitors download jpegs to their computer?

    Hi Jeanne! Everyting you are talking about is absolutely useless. If a user clicks on a link that means that he does want to save file and you don't have to ask again. All you need is just a simple link: <a href=&quot;something.jpg&quot;>something.jpg</a> If you think that your users don't...
  9. AndrewGrabovsky

    select List validation

    Hi dougrun! Let's see what we have here: if (statement) && (statement) .... there is an error here and correct one is this: if ( (statement) && (statement) ) I'm quite sure that this is the major problem of your script. Andrew | starway@mail.com
  10. AndrewGrabovsky

    Set where clicking back goes to?...Is this possible

    >>I have been told that you can determine where the back button actually takes you. It's not true. You cannot affect on stardart toolbar buttons of a browser. What you can do, however, is to use history.go() function, applied to a link (text or image): <a...
  11. AndrewGrabovsky

    How to communicate with Excel from JavaScript

    This work ONLY in IE and ONLY on Windows platform.
  12. AndrewGrabovsky

    Change Window Status

    You cannot change the features like status bar and toolbar of already opened window.
  13. AndrewGrabovsky

    What's Good and What's Not in Opera for Windows.

    Hi soonkhoo! It's good to hear that someone is interested in this extraorginary product! In general there are much more pros for using Opera than cons - ease of use, features, speed (page loading as well as files downloads), built-in mail client and ICQ-compatible messanger, standarts...
  14. AndrewGrabovsky

    How to change an image in Netscape 6??

    An image should be inside <A> tag, even if you don't use it as a hyperlink. If you don't want it to be a link, add href=&quot;#&quot; to it.
  15. AndrewGrabovsky

    &lt;hr&gt; between rows in a table

    Hi MikeT! This is what I use in this case: insert a new table row ... <tr> <td colspan='total_number_of_cols' bgcolor='line_color' background='backgr.gif' style='font-size:1pt'>NBSP</td> </tr> ... NBSP is & n b s p ; char (without spaces). backgr.gif - is a transparent image. It's height...
  16. AndrewGrabovsky

    check browser...

    Hi Rydel, a little correction to your list: I think you may through away old browsers (v.3 and earlier), but should add Opera - navigator.appName == &quot;Opera&quot;
  17. AndrewGrabovsky

    A Collapsable List

    It cannot be done without reloading of a page.
  18. AndrewGrabovsky

    submit form w/onchange and onclink works in IE not Net

    Hi joyster! Did you place <select>, <input> and other form elements inside <FORM> ... </FORM> tag? If not, this won't work in Netscape Navagator. Andrew | starway@mail.com
  19. AndrewGrabovsky

    stacked TABLES will not break to new line!

    Your code works fine, just checked it!

Part and Inventory Search

Back
Top