/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk

« back to all changes in this revision

Viewing changes to DuggaSys/quizSystem/pageframe.php

  • Committer: Gustav Hatvigsson
  • Date: 2013-04-24 11:22:57 UTC
  • mfrom: (36.4.17 lenasys)
  • Revision ID: gustav.hartvigsson@gmail.com-20130424112257-3jb8m6z9d1geff64
merge db changes... \n Contain criss-cross, but should work....

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
        <head>
3
3
                <meta charset="utf-8" />
4
4
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5
 
                <link href="css/base.css" rel="stylesheet" type="text/css" />
6
 
                <link href="css/app.css" rel="stylesheet" type="text/css" />
7
 
                <script type="text/javascript" src="js/jquery-1.8.0.min.js"></script>
 
5
                <link href="../../../../css/base.css" rel="stylesheet" type="text/css" />
 
6
                <link href="../../../../css/app.css" rel="stylesheet" type="text/css" />
 
7
                <script type="text/javascript" src="../../../../js/jquery.js"></script>
8
8
                <title><?php $pagetitle ?></title>
9
9
                <script type="text/javascript">
10
10
                        $(document).ready(function() {
18
18
                                        $(this).find("#scrolly").val($(document).scrollTop());
19
19
                                        //var val = $("input[type=submit][clicked=true]").val()
20
20
                                });
21
 
                                $('.confirm').click(function(){
 
21
                                $('.confirm').click(function() {
22
22
                                        var answer = confirm('Are you sure?');
23
23
                                        return answer // answer is a boolean
24
24
                                });  
25
25
                                <?php 
26
 
                                if(isset($_POST['scrolly'])){ 
 
26
                                if(isset($_POST['scrolly'])) { 
27
27
                                        echo '$(document).scrollTop('.$_POST['scrolly'].');';
28
28
                                        //echo 'alert("setting scrolly");';
29
29
                                }