Ajax load with swipe gesture on touch screen phones

by nolovelust 21. July 2011 15:26

There is a nice jQuery plugin called TouchWipe to obtain touch gestures from iPhone, iPod Touch and iPad and Android phones. Simple example below shows how to trigger an ajax load with left or right swipe on certain element

<!DOCTYPE html>
<html>
    <script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
    <script src="http://www.netcu.de/templates/netcu/js/jquery.touchwipe.min.js"  type="text/javascript"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            $("#list").touchwipe({
                wipeLeft: function () { loadData(); },
                wipeRight: function () { loadData(); },
                preventDefaultEvents: true
            });
        });  
		
		function loadData() {
		$.ajax({
			type: "GET",
			url: "AjaxLoad.htm",
			dataType: "html",
			success: function (result) { $('#listul').html(result); },
			error: function (err) {  }
		});
	}

    </script>
</head>
<body>
<div id="list" class="list" title="Swipe your finger left or right on the thumbnails below to load next set video set.">
<ul id="listul"></ul>
</div>
</body>
</html>

Tags: , , , , , , ,

Mobile web | Useful

Grap some of $2 Million World Developer Fund from Inmobi for Android, iPhone and iPad developers

by nolovelust 18. June 2010 12:53

Developing apps for Android, iPhone and iPad ? Go to http://inmobi.com/smart-dev/worlddevfund/ to grap some of $2 Million from InMobi.

Inmobi offers 100% revenue share for  Android, iPhone and iPad untill $2 million depleted. You will be paid 100% of you advertising income! Hurry up, first come first serve!

Personally as a mobile web developer I am a bit disappointed. Mobile web developers left out of this fund. I understand InMobi's aim to grab some share from juicy App Market(s) but there are thousands of mobile web developers who would start to use InMobi with such campaing!

 

Tags: , , , , ,

Android | iPhone | Mobile web | Useful

Tag cloud

Month List