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 TouchToneTommy 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: *

  • Users: ivanp
  • Order by date
  1. ivanp

    Script Debugger for Netscape

    The link for installation of the JS debugger is gone from the Netscape site. The .jar file itself and some readme.txt how to install it is here: ftp://ftp.netscape.com/pub/jsdebug/1.1/shipping/english/all_platforms/all_os/install/ Ivan Pavlov (ip@thehyper.net) Brainbench MVP for JavaScript...
  2. ivanp

    Overwrite method of tag in script

    Try: <DIV id=div1 style=&quot;width:200;height:100;&quot; onMouseout=&quot;alert('Hello')&quot;> Ivan Pavlov (ip@thehyper.net) Brainbench MVP for JavaScript www.brainbench.com
  3. ivanp

    Window Openning detection

    sorry Abakar, I had to turn-off the &quot;Process TGML&quot; option of the message or it takes [i] for itallic formating. I just noticed that you probably had the same problem. Here is the code one more time (may be the only real problem that you had is the char case in &quot;onClick&quot...
  4. ivanp

    Pop up window

    I see I was late - you responded as I was typing. :) Ivan Pavlov (ip@thehyper.net) Brainbench MVP for JavaScript www.brainbench.com
  5. ivanp

    Pop up window

    For IE there is a simple solution, the whole content of the <DIV id=&quot;myid&quot;> is in: document.all.myid.innerHTML if you want to have in it also the surrounding tag <DIV> you should use: document.all.myid.outerHTML For NN it is more complicated and could be impossible depending from...
  6. ivanp

    Window Openning detection

    Abakar, You missed the index[i] when reffering to the links collection, so your code points to the collection and not to a member of it. You also should set a return value for the newWinAlert() - if it returns &quot;true&quot; the new window is opened, else it is canceled. So I replaced your...
  7. ivanp

    Pop up window

    to show something in a pop up window it should be send there either from the opening window with ....document.write(...) or by opening a document in it (through &quot;href&quot; of the link or window.open() function). I am not sure that I understood fully your case (why not to use document.write...
  8. ivanp

    Window Openning detection

    I think that you can't escape from using the onClick event. Here is how you can do it without editing the <a> tag. <script language=&quot;JavaScript&quot;> function checkLinks(){ for (var i=0; i<document.links.length; i++) if (document.links[i].target==&quot;_blank&quot;)...
  9. ivanp

    Help with Parent Frames....

    Hi again.<br><br>This code should work:<br>self.opener.parent.Bottom.location.href=trget<br>(at least it worked by me)<br>note that I am using variable named &quot;trget&quot; instead &quot;target&quot; - with var name target I had also problems with the JS - obviously it is reserved...
  10. ivanp

    Help with Parent Frames....

    Strange -&nbsp;&nbsp;I made some quicktests and it should work. May be I could help better if I see the code of the frameset. <p>IvanP<br><a href=mailto:ip@thehyper.net>ip@thehyper.net</a><br><a href= > </a><br>
  11. ivanp

    Doesn't work but it should - (setTimeout() related)

    Tonny9, did you try to use Test.method() instead this.method? <p>IvanP<br><a href=mailto:ip@thehyper.net>ip@thehyper.net</a><br><a href= > </a><br>
  12. ivanp

    Geting &lt;BR&gt; to work after a Table

    Most probably you had &lt;table align=&quot;left&quot; ...&gt; ....&lt;/table&gt;. That would position all following text to the right of the table (including &lt;br&gt;) on right of the table. <br>The solution is to use not just &lt;br&gt; but &lt;br clear=&quot;all&quot;&gt; <p>IvanP<br><a...
  13. ivanp

    CSS Font Size in tables

    In general - you should apply the style to the &lt;td&gt; tag, but I'll need to look at the site for more details. <p>IvanP<br><a href=mailto:ip@thehyper.net>ip@thehyper.net</a><br><a href= > </a><br>
  14. ivanp

    Help with Parent Frames....

    I think you should use: self.opener.parent.BottomFrame.location.href=target<br>where &quot;BottomFrame&quot; is the name of the bottom frame (&lt;frame name=&quot;BottomFrame&quot; ....&gt;). <p>IvanP<br><a href=mailto:ip@thehyper.net>ip@thehyper.net</a><br><a href= > </a><br>
  15. ivanp

    Browser Print Function with Javascript

    Here is something that I fount in the net and that works for me.<br><br>//==========================================================<br>function printPG (){<br> if (document.all){<br> document.body.insertAdjacentHTML(&quot;beforeEnd&quot;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&quot;&lt;object...
  16. ivanp

    Disabling back button

    Try this:<br>for (i=0;i&lt;window.history.length; i++) window.history<i>=&quot;&quot;;<br><br>Please note that I didn't try it and I don't know if the history array accepts writing. <p>IvanP<br><a href=mailto:ip@thehyper.net>ip@thehyper.net</a><br><a href= > </a><br>
  17. ivanp

    Netscpe Problem - Javascript not working

    NS recongnises div as &quot;layer&quot; only if it has style=&quot;position:absolute&quot; and only then you can write dynamicaly in it.<br>You have to redesign the page so that the &quot;starthtm&quot; layer becomes absolutely positioned. <p>IvanP<br><a...
  18. ivanp

    IE vs Netscape

    From the praxis I know that you should not leave any blank spaces (spaces, new lines, comments etc.) between the tags(it has to look like &lt;td ....&gt;&lt;img .....&gt;&lt;/td&gt;). <p>IvanP<br><a href=mailto:ip@thehyper.net>ip@thehyper.net</a><br><a href= > </a><br>
  19. ivanp

    &lt;script language="javascript" for="..." event="..."&gt;

    I can't remember where I met this, but as I remember, the <i>for</i> refers to element on the page and <i>event</i> refers to event of this element and the code in the &lt;script&gt; is an eventhandler for the specific event of the specific element. Also not sure, but it is only MS specific, so...
  20. ivanp

    Textbox Connected to ListBox (Dynamic)

    here is a generic idea about how this could be done,<br><br>1. the listbox is build from the database (some server side code is needed - ASP, PHP ... Everything else is done on the client side)<br>2. the text-box value is examined by onkeyup event and its value is compared to the values in the...

Part and Inventory Search

Back
Top