hiding javascript function call from status bar.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Archana

    #1

    hiding javascript function call from status bar.

    Hi all,

    i am facing one problem with status bar of IE. when i execute any
    javascript function or navigate to any link it is showing me that in
    status bar which i don't want.

    how will ido this?

    any help will be truely appreciated.

    thanks in advance.
  • David Mark

    #2
    Re: hiding javascript function call from status bar.

    On Nov 20, 7:57 am, Archana <trialproduct2. ..@yahoo.comwro te:
    Hi all,
    >
    i am facing one problem with status bar of IE. when i execute any
    javascript function or navigate to any link it is showing me that in
    status bar which i don't want.
    That is a shame.
    >
    how will ido this?
    View | Status Bar will hide those pesky messages.

    [snip]

    Comment

    • SAM

      #3
      Re: hiding javascript function call from status bar.

      Le 11/20/08 1:57 PM, Archana a écrit :
      Hi all,
      >
      i am facing one problem with status bar of IE. when i execute any
      javascript function or navigate to any link it is showing me that in
      status bar which i don't want.
      <a href="javascrip t:doThat();"
      onmouseover="wi ndow.status='no link';return true;">do that</a>

      With recent browsers that can no more work.
      (protection of status bar)

      --
      sm

      Comment

      • Robin

        #4
        Re: hiding javascript function call from status bar.

        Archana wrote:
        Hi all,
        >
        i am facing one problem with status bar of IE. when i execute any
        javascript function or navigate to any link it is showing me that in
        status bar which i don't want.
        >
        how will ido this?
        >
        any help will be truely appreciated.
        >
        thanks in advance.
        See: http://jibbering.com/faq/index.html#javascriptURI

        Comment

        • Archana

          #5
          Re: hiding javascript function call from status bar.

          Hi,

          I think you r not getting my question. I want status bar to be
          displayed which is having progress bar. But i don't want url to be
          displayed or javascript call to be displayed on status bar.

          if you know then let me know abt it.

          Comment

          • David Mark

            #6
            Re: hiding javascript function call from status bar.

            On Nov 21, 1:42 am, Archana <trialproduct2. ..@yahoo.comwro te:
            Hi,
            >
            I think you r not getting my question.  I want status bar to be
            displayed which is having progress bar.  But i don't want url to be
            displayed or javascript call to be displayed on status bar.
            Ah, I see. You are referring to *my* status bar. Sorry, I like it
            the way it is.

            Comment

            • Thomas 'PointedEars' Lahn

              #7
              Re: hiding javascript function call from status bar.

              Archana wrote:
              i am facing one problem with status bar of IE. when i execute any
              javascript function or navigate to any link it is showing me that in
              status bar which i don't want.
              See the FAQ, as recommended.

              However, it can be argued that it would be a Good Thing that users see at a
              glance that the pseudo-link they are about to click is only a pseudo-link
              and does not necessarily cause navigation. Insofar I can see nothing wrong
              in using both the href="javascrip t:..." and the `onclick' attribute in links
              *that are created with scripting*, whereas the `onclick' code would return
              `false' to prevent the default action of the pseudo-link.


              PointedEars
              --
              var bugRiddenCrashP ronePieceOfJunk = (
              navigator.userA gent.indexOf('M SIE 5') != -1
              && navigator.userA gent.indexOf('M ac') != -1
              ) // Plone, register_functi on.js:16

              Comment

              Working...