html audio with jquery UI

Posted May 15th, 2010 in Blog by admin

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

Posted March 14th, 2010 in Portfolio by admin

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

Posted March 13th, 2010 in Portfolio by admin

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

Posted March 13th, 2010 in Blog by admin

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 the people love it. I found jquery Iphone UI. It’ not good. It design with iPhone Screen. So bad. Can’t use in Web Design for iPhone Safari. So, I searched new jquery and I found and I love it. It’s jQTouch. I found it and I said wow…. amazing….

Continue Reading »

Add jquery built in apiwork

Posted March 5th, 2010 in Blog by admin

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>