Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

With the Windows Phone 7 Browser, when the user clicks a link, it is shaded with a gray rectangle for approximately 0.5 seconds. This is fine in generally, however, if you have dynamic page behaviour, for example, clicking a link updates the DOM so that the link is no longer visible, the opaque gray rectangle lingers on the screen after the link itself has gone.

This looks pretty horrible!

Does anyone know how to disable this effect?

share|improve this question
Don't know how to disable this but you could set a timer in Javascript and update the DOM after 0.5s :) (I am assuming you're trying to tweak your own website) – Praetorian Jun 16 '11 at 20:33
No - I am seeing whether I can build complex HTML / JS apps. So, no, that is not an option. Thanks anyhow! – ColinE Jun 16 '11 at 20:46
I meant it more as a joke than a serious suggestion anyway :) BTW, I like your Metro in Motion series of posts. – Praetorian Jun 16 '11 at 20:57
I'm guessing you can just remove the focus from the link after you hide the link visibility? – RajenK Jun 17 '11 at 17:29
Would it have something to do with PixelShader Class? msdn.microsoft.com/en-us/library/… – Rhys Sep 7 '11 at 22:57
show 3 more comments

3 Answers

The following solution seems to work (at least on the emulator). The gray shading needs the dimensions of the clicked element. If the element has zero width then there is no shading, while clicking the child elements still fires the element's click handler.

<div id="myLink" style="float:left">
   <img src="images/myLinkIcon.png" style="position:absolute" />
   <span style="position:absolute;left:50px">Click here</span>
</div>

<script>
    // jQuery
    $(function () {
        $("#myLink").click(function () {
            console.log("clicked on myLink");
        });
    });
</script>

The div can either float or be absolutely positioned. The child elements have to be absolutely positioned, otherwise the div acquires a width.

share|improve this answer

This works try using jquery

$(id|classname|document).live('click',function(){
   //write code that needs to executed in this area
});

I have used this in my project. It works fine to hide the grey shade, avoid using inline function in html pages ... using jquery this function works only when inner content is assigned to it.. eg

<div id="d1"><div id="d2"></div></div>

you can this for inner div like this

$('#d2").live('click',function(){changecolor();changebackground();});

enjoy coding........jquery

share|improve this answer
Works great in general but on popovers "live" causes click events beeing called in the back of the popover. Mechanisms to stop propagation are not working together with JQuery "live" command. See additional note of api.jquery.com/event.stopPropagation – Michael Biermann Nov 15 '12 at 16:50

Maybe this can help minimize the problem:

https://github.com/triceam/WinPhone-NoGrayBox

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.