~ubuntu-branches/ubuntu/trusty/jgrowl/trusty

« back to all changes in this revision

Viewing changes to examples/multiple-containers.html

  • Committer: Package Import Robot
  • Author(s): Matthias Schmitz
  • Date: 2013-08-15 00:19:41 UTC
  • Revision ID: package-import@ubuntu.com-20130815001941-lubw6p6px4ey6wi4
Tags: upstream-1.2.13+dfsg
ImportĀ upstreamĀ versionĀ 1.2.13+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
 
2
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
3
<html>
 
4
  <head>
 
5
        <script type="text/javascript" src="http://code.jquery.com/jquery.js"></script>
 
6
    <script src="../jquery.jgrowl.js"></script>
 
7
    <link rel="stylesheet" type="text/css" href="../jquery.jgrowl.css"/>
 
8
  </head>
 
9
  <body>
 
10
    <div>
 
11
      <input type="button" onclick="$.jGrowl('Default Positioning');" value="Default"/>
 
12
      <input type="button" onclick="$('#one').jGrowl('Bottom Right Positioning');" value="Bottom Right"/>
 
13
      <input type="button" onclick="$('#two').jGrowl('Bottom Left Positioning');" value="Bottom Left"/>
 
14
    </div>
 
15
    <div id="one" class="jGrowl bottom-right"></div>
 
16
    <div id="two" class="jGrowl bottom-left"></div>
 
17
  </body>
 
18
</html>