Tag Archives for javascript
Mobile App with PhoneGap
PhoneGap (was called by the name Apache Callback,but now Apache Cordova) is an open-source mobile development framework produced by Nitobi, purchased by Adobe Systems. It enables software programmers to build applications for mobile devices using JavaScript, HTML5 and CSS3, instead of lower-level languages such as Objective-C.The resulting applications are hybrid, meaning that they are neither truly native (all … Continue reading
Bootstrap from Twitter – Typeahead Example
See below a simple example of Typeahead javascript (Bootstrap, from Twitter). First, include the js. <script type="text/javascript" src="js/bootstrap-typeahead.js"></script> HTML code In your form you need an input with tag element data-provide=”typeahead”. <input data-provide="typeahead" type="text" class="input-xlarge" id="actor" name="actor" autofocus="autofocus" maxlength="30" value="" … Continue reading
Ajax is easy!
First, what is ajax? “AJAX is the art of exchanging data with a server, and update parts of a web page – without reloading the whole page.” w3schools.com I used in this example: PHP 5.3 Javascript JQuery JSON HTML5 Which … Continue reading