Go Back   TechArena Community > Software > Software Development
Become a Member!
Forgot your username/password?
Register Tags Active Topics RSS Search Mark Forums Read SiteMap

Tags: , , ,

Sponsored Links



Need JavaScript development framework for WEB

Software Development


Reply
 
Thread Tools Search this Thread
  #1  
Old 23-02-2010
Member
 
Join Date: Feb 2010
Posts: 633
Exclamation Need JavaScript development framework for WEB

Hi all,

With AJAX technology, JavaScript frameworks are also good enough for the code scripting. The emergence of these frameworks for developers is a good thing, which means that we can spend more time on the project logic and the user experience, and do not have to spend too much time to the preparation of the basic code. Please send some suggestion for this. Thanks in advance.
Reply With Quote
  #2  
Old 23-02-2010
Praetor's Avatar
Member
 
Join Date: Apr 2008
Posts: 1,937
Need JavaScript development framework for WEB

We normally will not be a number of JavaScript frameworks used for both a project. There are many reasons: First, JS frame is generally more cumbersome and large JQuery compressed version of the size of nearly 40K, excessive use of the framework will occupy the limited bandwidth of the web browsing speed with which not a small impact. Check and reply.
Reply With Quote
  #3  
Old 23-02-2010
Member
 
Join Date: May 2008
Posts: 1,990
Re: Need JavaScript development framework for WEB

You can use Jquery that is basic JavaScript development framework. I will give you a designed to help you get started using jQuery. If you don't have a test page setup yet, start by making a new HTML page with the following contents:
Code:
<!doctype html>
<html>
  <head>
    <script type="text/javascript" src="jquery.js"></script>
    <script type="text/javascript">
     </script>
  </head>
  <body>
    <a href="http://jquery.com/">jQuery</a>
  </body>
</html>
You need to Edit the src attribute in the script tag to point to your copy of jquery.js. For instance, if jquery.js is in the same directory as your HTML file, you can use:

Code:
<script type="text/javascript" src="jquery.js"></script>
You need to download your own copy of jQuery from the Downloading page jQuery website.
Reply With Quote
  #4  
Old 23-02-2010
kelfro's Avatar
Member
 
Join Date: Apr 2008
Posts: 1,976
Re: Need JavaScript development framework for WEB

The DOMAssistant is to provide a simple and more convince way to script against the Document Object Model (DOM) in web browsers. The idea is that everything start with the element in question, selected by id or CSS selectors, and then create various methods on it, as such adding or removing classes, events etc.
Code:
("#container input[type=text]");
("#navigation a").addEvent("click", myFunc);
("#news-list").load("updated-news.php");
Check and reply.
Reply With Quote
  #5  
Old 23-02-2010
Zecho's Avatar
Member
 
Join Date: May 2008
Posts: 2,267
Need JavaScript development framework for WEB

You can also use YUI Library that is a set of utilities and controls, written with JavaScript and CSS, for build highly interactive web applications using techniques such as DOM scripting, DHTML and AJAX. YUI is available under a free license and ready to use. YUI is established, scalable, quick, and robust. Built by frontend engineers at Yahoo! and contributor from around the world, it's an industrial-strength JavaScript library for professional who love JavaScript. Best of luck.
Reply With Quote
Reply

  TechArena Community > Software > Software Development


Thread Tools Search this Thread
Search this Thread:

Advanced Search


Similar Threads for: "Need JavaScript development framework for WEB"
Thread Thread Starter Forum Replies Last Post
Adobe Unveils New Framework for Media Player Development The Hollow Web News & Trends 1 03-06-2011 05:54 AM
Need framework's core development technologies Ransom Software Development 5 25-02-2010 12:07 AM
Update to .NET Framework 3.5 Service Pack 1 for the .NET Framework Assistant 1.0 x86 (KB963707) t-4-2 Windows Update 8 11-07-2009 03:54 PM
Microsoft .NET Framework 3.5 Service Pack 1 and .NET Framework 3.5 Family Update (KB951847) x64 Installation problem BP Windows Update 8 16-03-2009 09:29 AM
Oracle ADF (Application Development Framework)? Kiran123 Ebooks 2 11-02-2009 06:13 PM


All times are GMT +5.5. The time now is 11:31 AM.