-
-
Save cfjedimaster/0d614422b66075d90c21 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <a href id="reload">clicky</a> | |
| <script type="text/javascript"> | |
| $(document).ready(function(){ | |
| function getUsers(){ | |
| $.ajax({ | |
| type: "GET", | |
| url:"../components/user.cfc?method=GET", | |
| dataType: "json", | |
| data: { | |
| objectid: 0 | |
| }, | |
| success: function (data) { | |
| $("##userTableBody").html(""); | |
| $.each(data,function(i,obj){ | |
| var div_data= 'obj.blah'; | |
| $(div_data).appendTo('#userTableBody'); | |
| }); | |
| } | |
| }); | |
| } | |
| $('#reload').click(getUsers); | |
| getUsers(); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
<!doctype html>
<title>Stage-1 Flight Simulator Prototype</title> <style> html,body{height:100%;margin:0;background:#f5f7fb;color:#072635;font-family:system-ui,Segoe UI,Roboto,Arial;overflow:hidden} #ui{position:absolute;left:12px;top:12px;z-index:20;max-width:360px} .panel{background:rgba(255,255,255,0.85);backdrop-filter:blur(6px);padding:10px;border-radius:8px;margin-bottom:8px;box-shadow:0 2px 10px rgba(16,24,32,0.06)} button,select{padding:6px 8px;border-radius:6px;border:none;background:#1e6fbf;color:white;cursor:pointer} .small{font-size:13px;color:#154b5c} #hud{position:absolute;right:12px;top:12px;text-align:right;z-index:20} #instruments{position:absolute;left:12px;bottom:12px;z-index:20} .inst{background:rgba(255,255,255,0.9);padding:8px;border-radius:8px;color:#072635;font-family:monospace;margin-bottom:6px;box-shadow:0 2px 8px rgba(16,24,32,0.05)} .msg{color:#b00020;font-weight:700} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r155/three.min.js"></script>a <script src="https://cdnjs.cloudflare.com/ajax/libs/simplex-noise/2.4.0/simplex-noise.min.js"></script>