html audio with jquery UI

I need to implement , next , previous and change to another music when music has been stop. Source http://github.com/saturngod/html5audio-jquery_ui Demo http://www.saturngod.net/project/html5audio/

Simple Blog Engine

It’s written my CodeIgniter Framework. Technogloy PHP MySQL jQuery Feature are Search WYSIWYG Text Editor RSS support Admin Panel Comment Post , Comment Delete , Edit Source Code

jQbox

Jqbox is a jquery popup box. I wrote this, I want to use jquery alert box, message box instead of original alert box. Sometime I need to make popup box for show message or gallery. I can use this. Technology javascript Demo Download

jQTouch

Yesterday, I’m testing jqtouch. Wow… It’s great. I’m starting iPhone Development with PhoeGap. It’s easy and fast development. I don’t need to read iPhone SDK and I can development quickly with jquery. So, I searching iPhone UI with jquery because phonegap is not support native UI. I want native UI. It’s nice and most of [...]

Add jquery built in apiwork

haha. I add jquery for default. Here, I use in my view like this <html> <head> <?php /* add script from code.jquery.com $this->jq->get_latest(); */ //you can also load like this $this->load->js(‘jquery’); $this->jq->noconfilt=true //for jquery no conflit  $this->jq->get_script();  ?>  <script> <?php $this->jq->start_jq(); ?> alert(“I’m jquery”); <?php $this->jq->end_jq(); ?> </script> </head> <body> </body> </html>

Ornagai Dictionary with Jquery + JSON

Today, I am making ornagai dictionary with jquery. I was thinking about at 7:00 at English Tuition. At 12:00 pm, I was staring the code for that. It was complete in a half hour. However, it’s using 20 KB JSON file. So, I thought it, “Can I do complete dictionary in one JSON file ? [...]

Twitter Lik Search with Jquery

Yesterday, I post about Ajax search with Jquery and PHP. Today, I found another search form 9lessons blog. It also use Jquery and PHP. You can see in there.

Ajax Search When textbox change (JQUERY + PHP)

It can make easy with jquery and php. Jqueyr also include ajax function and we can make easily that. First download jquery file from www.jquery.com. I made search.html and code is follwoing. searching.html [sourcecode lang="xhtml"]<html><head><title>AJAX Search Simple</title><script src=”jquery.js”></script><script>$(document).ready(function() {     $(“#q”).keyup(function(event){        value=$(this).val();        $(“#result”).html(“<b>Searching…</b>”);        $(“#result”).load(“result.php?data=”+value);    }); });</script></head><body><input type=”text” id=”q”><div id=”result”></div><body> </html>[/sourcecode] I am [...]

Json with Jquery

Today, I am think about ornagai api. I should export with JSON because json is easy to read data with javascript library (mootools,jquery,etc..) and also with PHP. So, I tring with Jquery to read json. Oh! it’s so easy and so nice for me. This is a data.json { “data”: [{ "word":"A", "state":"art", "def":"     [...]

Shortest URL

Today, I wrote PHP,Jquery code for shortest URL that are bit.ly and tinyurl. I get PHP code from  http://davidwalsh.name/  and then I combine with Jquery. Bravo! It’s so useful for me. Light weight and faster than their home site becuase of graphic . By the way, I am written this site with HTML 5 and you need to firefox 3.5 or Chrome [...]