Author Archive

The following code snippet will prefill username and password in the respective textboxes:

That’s it.

Source Code for Android Sliding Drawer Animation

The following code snippet will create sliding drawer animation:

Incoming search terms:

  • ios cocoa slidingdrawer

The following code snippet will access the sdcard sqlite database:

Incoming search terms:

  • mobile web script sqlite

You can create a jQuery script for adjusting to date according to from date and vice versa. The following code will create a data range textbox for the above purpose:

Incoming search terms:

  • JQuery|SEO SEM Web eCommerce iOSandAndroid

Creating array in string.xml in Android

You can create an array in String.xml file and use it in your app like following:

You can use it like following in main.java:

That’s it

jQuery script to disable right click on webpage

The following code snippet will disable the right click on webpage to view source content or copy images:

That’s it.

jQuery accordion example

Jquery accordion example:

 

<html lang=”en”>
<head>
<meta charset=”utf-8″ />
<title>jQuery UI Accordion – Default functionality</title>
<link rel=”stylesheet” href=”http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css” />
<script src=”http://code.jquery.com/jquery-1.9.1.js”></script>
<script src=”http://code.jquery.com/ui/1.10.2/jquery-ui.js”></script>
<link rel=”stylesheet” href=”/resources/demos/style.css” />
<script>
$(function() {
$( “#accordion” ).accordion();
});
</script>
</head>
<body>
<div id=”accordion”>
<h3>JAVA</h3>
<div>
<p>Java is a set of several computer software products and specifications from Sun Microsystems (which has since merged with Oracle Corporation), that together provide a system for developing application software and deploying it in a cross-platform computing environment. Java is used in a wide variety of computing platforms from embedded devices and mobile phones on the low end, to enterprise servers and supercomputers on the high end. While less common, Java applets are sometimes used to provide improved and secure functions while browsing the World Wide Web on desktop computers.</p>
</div>
<h3>ORACLE</h3>
<div>
<p>The Oracle Database (commonly referred to as Oracle RDBMS or simply as Oracle) is an object-relational database management system [2] produced and marketed by Oracle Corporation. Larry Ellison and his friends, former co-workers Bob Miner and Ed Oates, started the consultancy Software Development Laboratories (SDL) in 1977. SDL developed the original version of the Oracle software. The name Oracle comes from the code-name of a CIA-funded project Ellison had worked on while previously employed by Ampex.</p>
</div>
<h3>PHOTOSHOP</h3>
<div>
<p>Adobe Photoshop is a graphics editing program developed and published by Adobe Systems.Adobe’s 2003 “Creative Suite” rebranding led to Adobe Photoshop 8′s renaming to Adobe Photoshop CS. Thus, Adobe Photoshop CS6 is the 13th major release of Adobe Photoshop. The CS rebranding also resulted in Adobe offering numerous software packages containing multiple Adobe programs for a reduced price. Adobe Photoshop is released in two editions: Adobe Photoshop, and Adobe Photoshop Extended, with the Extended having extra 3D image creation, motion graphics editing, and advanced image analysis features.</p>
</div>

</div>
</body>
</html>

Incoming search terms:

  • android accordion example

Creating basic Dialog box in jQuery

The following code snippet will create a basic jquery dialogbox:

<html>
<head>
<link rel=”stylesheet” href=”http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css” />
<script src=”http://code.jquery.com/jquery-1.9.1.js”></script>
<script src=”http://code.jquery.com/ui/1.10.2/jquery-ui.js”></script>
<link rel=”stylesheet” href=”/resources/demos/style.css” />
<script>
$(function() {
$( “#dialog” ).dialog();
});
</script>
</head>
<body>
<div id=”dialog” title=”Test dialog”>
<p>Welcome To jQuery UI Dialog</p>
</div>
</body>
</html>

Incoming search terms:

  • html dialog box in arduino
  • dialog box in jquery for ios

JQuery UI Tabs example

Here is the source code for creating jquery ui tab in easy way:

<html>
<head>
<link rel=”stylesheet” href=”http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css” />
<script src=”http://code.jquery.com/jquery-1.9.1.js”></script>
<script src=”http://code.jquery.com/ui/1.10.2/jquery-ui.js”></script>
<link rel=”stylesheet” href=”/resources/demos/style.css” />
<script>
$(function() {
$( “#tabs” ).tabs();
});
</script>
</head>
<body>
<div id=”tabs”>
<ul>
<li><a href=”#tabs1″>JAVA</a></li>
<li><a href=”#tabs2″>ORACLE</a></li>
<li><a href=”#tabs3″>PHOTOSHOP</a></li>
</ul>
<div id=”tabs1″>
<p>Java is a set of several computer software products and specifications from Sun Microsystems (which has since merged with Oracle Corporation), that together provide a system for developing application software and deploying it in a cross-platform computing environment. Java is used in a wide variety of computing platforms from embedded devices and mobile phones on the low end, to enterprise servers and supercomputers on the high end. While less common, Java applets are sometimes used to provide improved and secure functions while browsing the World Wide Web on desktop computers.</p>
</div>
<div id=”tabs2″>
<p>The Oracle Database (commonly referred to as Oracle RDBMS or simply as Oracle) is an object-relational database management system [2] produced and marketed by Oracle Corporation. Larry Ellison and his friends, former co-workers Bob Miner and Ed Oates, started the consultancy Software Development Laboratories (SDL) in 1977. SDL developed the original version of the Oracle software. The name Oracle comes from the code-name of a CIA-funded project Ellison had worked on while previously employed by Ampex.</p>
</div>
<div id=”tabs3″>
<p>Adobe Photoshop is a graphics editing program developed and published by Adobe Systems. Adobe’s 2003 “Creative Suite” rebranding led to Adobe Photoshop 8′s renaming to Adobe Photoshop CS. Thus, Adobe Photoshop CS6 is the 13th major release of Adobe Photoshop. The CS rebranding also resulted in Adobe offering numerous software packages containing multiple Adobe programs for a reduced price. Adobe Photoshop is released in two editions: Adobe Photoshop, and Adobe Photoshop Extended, with the Extended having extra 3D image creation, motion graphics editing, and advanced image analysis features.</p>
</div>
</div>
</body>
</html>

Incoming search terms:

  • original menu jquery ui tabs
  • rails jquery ui 1 10 2
  • reload jquery ui 1 10 2 tabs

JQuery slider example

The following code will create a jquery slider:

<!doctype html>
<html>
<head>
<link rel=”stylesheet” href=”http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css” />
<script src=”http://code.jquery.com/jquery-1.9.1.js”></script>
<script src=”http://code.jquery.com/ui/1.10.2/jquery-ui.js”></script>
<link rel=”stylesheet” href=”/resources/demos/style.css” />
<script>
$(function() {
$( “#jqslider” ).slider();
});
</script>
</head>
<body>
<div id=”jqslider”></div>
</body>
</html>

Page 1 of 4212345...102030...Last »