Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

foundation 5 reveal modal not working

Good day to all,

I'm using foundation 5 for my mini project. I want to use the reveal/modal feature of the framework. But it seems it does not work.

index.html

<!DOCTYPE html>
<html>
<head>
    <title>Job Posting</title>
    <link rel="stylesheet" type="text/css" href="../css/normalize.css">
    <link rel="stylesheet" type="text/css" href="../css/foundation.min.css">

    <script type="text/javascript" src="../js/vendor/custom.modernizr.js"></script>
</head>
<body>
  <a href="#" class="button" data-reveal-id="myNormal">click</a>
  <div class="reveal-modal" id="myNormal">
      Modal
      <a class="close-reveal-modal">x</a>
  </div>
   <script src="../js/vendor/jquery.js"></script>
   <script src="../js/foundation/foundation.js"></script>
   <script src="../js/foundation/foundation.reveal.js"></script>
   <script>
      $(document).foundation();
   </script>
</body>

I'm pretty sure that the browser loaded the js as it does not show any error in the debugger. And I know it's somewhere in the code that I left out but it's been a couple of hours since I ran into this. Any help would be much appreciated.

like image 822
Boy Pasmo Avatar asked Nov 28 '13 08:11

Boy Pasmo


1 Answers

You might have forgot data-reveal :

<div class="reveal-modal" id="myNormal" data-reveal>
like image 61
Oliv Avatar answered Oct 17 '22 07:10

Oliv