I need to implement , next , previous and change to another music when music has been stop.
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
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 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….
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>



