<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Mobile-Web-App: jQuery UI tabs</title>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/ui/1.8.18/jquery-ui.js"></script>
<link rel="stylesheet" href="http://jqueryui.com/themes/base/jquery.ui.all.css">
<script type="text/javascript">
function onloaded(){
$( "#tabs" ).tabs();
}
</script>
</head>
<body onload="onloaded();">
<h1>Mobile-Web-App: jQuery UI tabs</h1>
<div id="tabs">
<ul>
<li><a href="#tab1">Tab 1: Mobile-web-app <img src="http://goo.gl/BlQEX" height="20"></img></a></li>
<li><a href="#tab2">Tab 2: jQuery UI</a></li>
<li><a href="#tab3">Tab 3:</a></li>
</ul>
<div id="tab1">
<p>Mobile-web-app</P
<p>My Blog <a href="http://mobile-web-app.blogspot.com/">http://mobile-web-app.blogspot.com/</a></p>
</div>
<div id="tab2">
<p>jQuery UI provides abstractions for low-level interaction and animation, advanced effects and high-level, themeable widgets, built on top of the jQuery JavaScript Library, that you can use to build highly interactive web applications.
</p>
</div>
<div id="tab3">
</div>
</div>
</body>
</html>
Thursday, April 5, 2012
jQuery UI: tabs
Wednesday, April 4, 2012
jQuery UI: accordion
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Mobile-Web-App: jQuery UI accordion</title>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/ui/1.8.18/jquery-ui.js"></script>
<link rel="stylesheet" href="http://jqueryui.com/themes/base/jquery.ui.all.css">
<script type="text/javascript">
function onloaded(){
$( "#accordion" ).accordion();
}
</script>
</head>
<body onload="onloaded();">
<h1>Mobile-Web-App: jQuery UI accordion</h1>
<div id="accordion">
<h3><a href="#">Section 1: Mobile-web-app <img src="http://goo.gl/BlQEX" height="20"></img></a></h3>
<div>
<p>Mobile-web-app</P
<p>My Blog <a href="http://mobile-web-app.blogspot.com/">http://mobile-web-app.blogspot.com/</a></p>
</div>
<h3><a href="#">Section 2: jQuery UI</a></h3>
<div>
<p>jQuery UI provides abstractions for low-level interaction and animation, advanced effects and high-level, themeable widgets, built on top of the jQuery JavaScript Library, that you can use to build highly interactive web applications.
</p>
</div>
<h3><a href="#">Section 3</a></h3>
<div>
</div>
</div>
</body>
</html>
Tuesday, April 3, 2012
Yahoo! open source Mojito - a JavaScript framework developed by Yahoo! for Web developers.
Mojito is a FREE MVC application framework built on YUI 3 that enables agile development of Web applications. Mojito allows developers to write client and server components in the same language (JavaScript), using the same framework. Because Mojito applications are written in JavaScript, they can run on the client (in the browser) and on the server (with Node.js). In addition, Mojito has built-in support for internationalization, testing, and building documentation.
Web Site: http://developer.yahoo.com/cocktails/mojito/
Yahoo announced the availability of Yahoo!’s Mojito in open source, a ground-breaking JavaScript framework developed by Yahoo! for Web developers. Mojito is one of the Yahoo! Cocktails, our JavaScript-centric presentation platform for connected devices ~ Yahoo Developer Network - Yahoo!’s Mojito is Now Open Source.
Web Site: http://developer.yahoo.com/cocktails/mojito/
Yahoo announced the availability of Yahoo!’s Mojito in open source, a ground-breaking JavaScript framework developed by Yahoo! for Web developers. Mojito is one of the Yahoo! Cocktails, our JavaScript-centric presentation platform for connected devices ~ Yahoo Developer Network - Yahoo!’s Mojito is Now Open Source.
The Way To Go: A Thorough Introduction To The Go Programming Language
This book provides the reader with a comprehensive overview of the new open source programming language Go (in its first stable and maintained release Go 1) from Google. The language is devised with Java / C#-like syntax so as to feel familiar to the bulk of programmers today, but Go code is much cleaner and simpler to read, thus increasing the productivity of developers. You will see how Go: simplifies programming with slices, maps, structs and interfaces incorporates functional programming makes error-handling easy and secure simplifies concurrent and parallel programming with goroutines and channels And you will learn how to: make use of Go's excellent standard library program Go the idiomatic way using patterns and best practices in over 225 working examples and 135 exercises This book focuses on the aspects that the reader needs to take part in the coming software revolution using Go.
Monday, April 2, 2012
FREE eBook download: Design Patterns In Python - Rahul Verma and Chetan Giridhar
Design Patterns in Python - Authors: Rahul Verma, Chetan Giridhar
This book is about learning design patterns through the medium of Python language. If you are a tester interested in design of test automation frameworks or thinking about how a single test automation problem could be solved in different ways, this book would prove to be very useful. If you are new to design patterns being a programmer or you want to explore OOP in Python further, this text provides the first building blocks.
Table Of Contents
Version 0.1 of the book containing 7 design patterns is now available for download.
Link: http://dpip.testingperspective.com/
This book is about learning design patterns through the medium of Python language. If you are a tester interested in design of test automation frameworks or thinking about how a single test automation problem could be solved in different ways, this book would prove to be very useful. If you are new to design patterns being a programmer or you want to explore OOP in Python further, this text provides the first building blocks.
Table Of Contents
- Copyright Information
- About the Authors
- Foreword – Vipul Kocher
- Preface
- 1. Model-View-Controller Pattern
- 2. Command Pattern
- 3. Observer Pattern
- 4. Facade Pattern
- 5. Mediator Pattern
- 6. Factory Pattern
- 7. Proxy Pattern
- References and Further Reading
Version 0.1 of the book containing 7 design patterns is now available for download.
Link: http://dpip.testingperspective.com/
jQuery UI
With the jQuery UI library, you can apply the power and standards of jQuery to user interface design, complete with interactive elements, animation, and themeable widgets. This concise, code-heavy guide demonstrates how to harness interactive features that HTML5 lacks, including tabs, accordions, and dialog boxes. You’ll also learn how to program common but complex tasks, such as managing drag and drop and autocomplete, that make it easier for users to interact with your site.
This book provides a quick tour of how jQuery UI can improve your HTML pages, followed by standalone chapters that focus on each of the components in detail. If you’re a web developer or designer looking to enrich your website with new features—without having to dive into full-fledged Javascript—jQuery UI is a must.
This book covers the following extensions in version 1.8:
This book provides a quick tour of how jQuery UI can improve your HTML pages, followed by standalone chapters that focus on each of the components in detail. If you’re a web developer or designer looking to enrich your website with new features—without having to dive into full-fledged Javascript—jQuery UI is a must.
This book covers the following extensions in version 1.8:
- Tab management
- Accordion menus
- Dialog boxes
- Buttons
- Progress bars
- Sliders
- Date pickers
- Autocompleters
- Drag and drop management
- Selection, resizing, and switching of elements
- New visual effects
About the Author
Eric Sarrion has written on Rails, HTML and CSS, J2EE, and JavaScript for O'Reilly France. He manages a small training and development company.
Google Feed API
With Google Feed API, you can download any public Atom, RSS, or Media RSS feed using only JavaScript.
The Google Feed API takes the pain out of developing mashups in JavaScript because you can now mash up feeds using only a few lines of JavaScript, rather than dealing with complex server-side proxies. This makes it easy to quickly integrate feeds on your website.
Example:
The Google Feed API takes the pain out of developing mashups in JavaScript because you can now mash up feeds using only a few lines of JavaScript, rather than dealing with complex server-side proxies. This makes it easy to quickly integrate feeds on your website.
Example:
<html>
<head>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("feeds", "1");
function initialize() {
var feed = new google.feeds.Feed("http://feeds.feedburner.com/Mobile-web-app");
feed.setNumEntries(10);
feed.load(function(result) {
if (!result.error) {
var container = document.getElementById("feed");
for (var i = 0; i < result.feed.entries.length; i++) {
var entry = result.feed.entries[i];
var div = document.createElement("div");
var A = document.createElement("A");
A.setAttribute("href",entry.link);
A.appendChild(document.createTextNode(entry.title));
div.appendChild(A);
container.appendChild(div);
}
}
});
}
google.setOnLoadCallback(initialize);
</script>
</head>
<body>
<h1>Mobile-web-app: Google Feed API</h1>
<div id="feed"></div>
</body>
</html>
Subscribe to:
Posts (Atom)




