Posts

Showing posts from January, 2014

Show Search Results in a Pop-up Div

Image
It uses MySQL as the database. Basically, the search results will pop up. Here's the code below:

Can't get enough of Attack on Titans?

Image
JAPAN!!! Levi's driving it!! LOL SOURCE

Load MySQL Data using JQuery

Image
Of course, you won't be redirected to another page to see the result. That's the best thing about JQuery , although AJAX can also do it. Anyway, here's the code snippet for the user's side.. <input id="datepicker" maxlength="20" type="text" /> <div id="refresh_img">Select Date to Load images..</div> <script type="text/javascript"> $(document).ready(function(){ $('#datepicker').change(function(){ var variable = document.getElementById('datepicker').value; $('#refresh_img').load('query/getprojimg.php',{"variable": variable}).fadeIn("slow"); }); }); </script> And for the server side.