Results 1 to 5 of 5

Thread: Need JavaScript development framework for WEB

  1. #1
    Join Date
    Feb 2010
    Posts
    658

    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.

  2. #2
    Join Date
    Apr 2008
    Posts
    1,948

    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.

  3. #3
    Join Date
    May 2008
    Posts
    2,012

    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.

  4. #4
    Join Date
    Apr 2008
    Posts
    2,005

    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.

  5. #5
    Join Date
    May 2008
    Posts
    2,297

    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.

Similar Threads

  1. Adobe Unveils New Framework for Media Player Development
    By The Hollow in forum Web News & Trends
    Replies: 1
    Last Post: 03-06-2011, 04:54 AM
  2. Replies: 10
    Last Post: 05-05-2011, 11:13 AM
  3. Need framework's core development technologies
    By Ransom in forum Software Development
    Replies: 5
    Last Post: 25-02-2010, 12:07 AM
  4. Replies: 8
    Last Post: 16-03-2009, 08:29 AM
  5. Replies: 2
    Last Post: 11-02-2009, 06:13 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,751,823,330.07850 seconds with 16 queries