Mouse pointer & Status bar showing continuous loading

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vsvnmurthy
    New Member
    • Nov 2007
    • 4

    Mouse pointer & Status bar showing continuous loading

    Hai ,

    When i am trying to load an image using javascript popup window(same dimensions of image), the status bar and Mouse pointer showing continuous loading even though image loaded.
    How can i fix this problem? please answer if any one has the solution.

    My window creation syntax
    [CODE=javascript]function mwindow(w,h)
    {
    table = table.window.op en("","a","top= 10,"left=10,wid th=500,height=5 00");
    and so on..
    <img src="" alt="m">
    and so on...
    } [/CODE]
    Thank you
    murthy...
    Last edited by acoder; Nov 17 '07, 12:01 PM. Reason: Added code tags
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    When creating the window, use [CODE=javascript]table = window.open(... ) [/CODE] instead.

    Comment

    Working...