Showing posts with label JQUERY. Show all posts
Showing posts with label JQUERY. Show all posts

Monday, December 27, 2010

Visit Now: www.WaqarAttari.com --- Pakistan's # 1 Freelance Business Partner.

 

 waqarattari-logo-Horizontal

www.WaqarAttari.com

Pakistan's # 1 Freelance Business Partner.

Facebook Page:

About Waqar Attari

He is a twenty-five year old Software Engineer, lives in Pakistan in the province of Sindh. He is completing Masters in Software Engineering. He is a perfectionist who loves software engineering from simplicity to complexity. He started playing with software technology years ago and always tries to improve his ability to remain faithful to clients.

He is constantly striving to improve himself and of his powers, which identifies the equilibrium between creativity and design.

Our Services

  • Customized Software
  • Web-Based Solution
  • Web Designing
  • eCommerce Solutions
  • Business Process Outsourcing Services
  • Advanced Infrastructure Design and Implementation
  • Integrated Application Design and Deployment
  • Technology and Business Consultancy
  • Human Resources Management (HRM)
  • Business Solutions (ERP/CRM)
  • Solution Designing, Development and Implementation
  • Outsourcing Services
  • Enterprise Application Integration
  • Business Intelligence and Data Warehousing
  • Integrated e-Business Solutions
  • Mobility Solutions

What do we do?

We provide a wide range of offshore software development services: from custom website design to developing business solutions which demand complex software programming and custom programming services. We keep its specialist well informed about the latest trends on the market and newest technology. We provide our customers with high-end internet products.

We are constantly improving our knowledge and expanding our services to provide our customers with the highest level of professional help for their projects.

How do we work?

Working on software development services, we deliver only the highest quality products. Our offshore software development defines the clients' goals and collects requirements for the proposed software, writing specification, object-oriented analysis (OOA) and object-oriented design (OOD). The specialists gather all the necessary information utilizing common design patterns and thoroughly testing the software applications. we spend a lot of time to determine the appropriate functional and welcoming interface. Our approach allows us to offer efficient applications in many fields and for a wide variety of platforms.

Sunday, April 26, 2009

jQuery HowTo's |How to get started

 e-Book (Learning jQuery 1.3 Paperback)

Starting with jQuery needs three basic steps:

  1. First, download jQuery and store it in a location your web page can access. Download the latest version here.
  2. Include jQuery into your HTML page.
  3. Make use of jQuery's functionality.

A sample web page might look something like this:

<html>
<
head>
<
title>My first jQuery</title>

<
script type="text/javascript" src="path/to/jquery.1.2.1.pack.js"></script>

<
script type="text/javascript">
//this is jQuery code
$(document).ready(function () {
alert("I came from jQuery!");
});
</script>

</
head>
<
body>
<
h2>
jQuery sample</h2>
</
body>
</
html>


 



The jQuery code you decide to use depends on your needs. The rest of the How-To's on this page help to highlight what can be done. These are more simplistic examples though. Please visit the jQuery documentation or the jQuery mailing list for more details. The more advanced things you see jQuery do are usually a combination of the basics though.



A note about the different jQuery files.

jQuery tries to accomodate all types of developers. Those who want to get their hands dirty and explore jQuery's inner workings should download the uncompressed version of the jQuery library. All others probably want to use the packed version as this has the smallest footprint that is supported by all browsers. The packed version removes all extra spaces and comments to compress the library, and then encodes it to make it even smaller. The minified version of the library does the same, except it does not encode it.

Friday, April 24, 2009

Jquery

e-Book (Learning jQuery 1.3 Paperback)

jQuery is great in many ways. You probably first heard about the framework when browsing through a showcase of beautiful “ajax” scripts and became impressed with how easy it can be used to create advanced and delightful effects. But jQuery is much more than that. After you’ve seen all the fancy slides and animations and got to know the framework, you realize that it can do much more to assist you in building advanced, content-driven web sites and applications.

Here is a hand-picked list of useful jQuery scripts and utilities, created to make your web development easier. You won’t find any fancy slides or animations in here, instead I have compiled a list of the best, most well-written and useful jQuery components on the web that I would use myself.
Am I missing something? Let me know in the comments.