Hi thaks for your reply,

How can I stop normal handler.

my link is like that..

<script type="text/javascript">
            function information(){
                jQuery.blockUI({ message: jQuery('#111'), css:
{border: '0px solid #a00', textAlign:'center'} });
            };
</script>

<a href="#" onclick="information()">info</a>

The other link has same problem..

<a href="#" onClick="MM_openBrWindow
('information.do','','status=yes,scrollbars=yes,resizable=yes,width=400,height=350')">Info</
a>


On Sep 9, 10:39 am, Shawn <sgro...@open2space.com> wrote:
> Not familiar with the BlockUI plugin.  But, do you have a .click() event
> somewhere related to that link?  If so, return false from the event handler.
>
> Setting href="#" means a named anchor.  "#" by itself is top of the
> page.  So, if the anchor tag's normal click handler is executed, you'll
> be returning to the top of the page.  You need to stop the normal
> handler - which is usually done in jQuery by returning false from and
> event handler function.
>
> HTH
>
> Shawn
>
>
>
> merihsaka...@yahoo.com wrote:
> > Hi all,
> > I am using jQuery BlockUI Plugin (v2). It works success but I have a
> > small problem, when I click the link, it is bloclking the page but the
> > main page goes up.
>
> > Also same problem for link which is oppening new tab or new windows.
> > main pages goes up when I click the link.
>
> > any advice
>
> > Thanks,- Hide quoted text -
>
> - Show quoted text -

Reply via email to