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

I am writing a website based on the new windows 8 Metro style and this works ok. I have a tile that links to a “Modal” on the same page that drops down from the top of the page and is like a light box where it darkens the background.

I now what to have a modal for each tile on my page (about 10) so I thought I could have a separate page called modal and pass the information over to it.

The problem I have is that the link below is calling the modal.php but is not going to the modal0 div.

Tile link:

<div class=" tile wide imagetext wideimage " role="button" data-toggle="modal" onClick="window.location.href='modal.php#modal0';">

Modal.php

<div id="modal0" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">

Am I doing something wrong as this is the first time I have played with the modals.

share|improve this question
That doesnt give us much to go one. Some code would be nice. – Husman Feb 27 at 10:30
Show us a minimal version of the problem. – Erno de Weerd Feb 27 at 10:55
Thank you, it's based on the scripts from aozora.github.com/bootmetro/javascript.html#modals – user2039822 Feb 27 at 11:37

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.