TipsOnLips.net

Your .net tips and tricks source

About the author

Author Name is someone.
E-mail me Send mail

Recent comments

Authors

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2010


JQuery Resources 2009 Q4

  1. Easy XML Consumption using jQuery
  2. Reading XML with jQuery 

Categories: JavaScript | Jquery
Posted by developer on Thursday, September 24, 2009 11:51 PM
Permalink | Comments (1) | Post RSSRSS comment feed

Ajax and JQuery CDNs (Microsoft and Google)

             Source: http://www.asp.net/ajax/cdn/

  • Google
    • JQuery min(<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>)
    • JQuery (<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript"></script>)
    • JQuery UI min(<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js" type="text/javascript"></script>)
    • JQuery UI(<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js" type="text/javascript"></script>)

        http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.2-vsdoc2.js


Categories: Ajax | Jquery
Posted by developer on Friday, September 18, 2009 7:30 AM
Permalink | Comments (5) | Post RSSRSS comment feed

Run JavaScript function on a Textbox Enter

<input id="address" type="text" size="60" onkeydown="if (event.keyCode == 13) document.getElementById('btnSearch').click()" />

Source: http://stackoverflow.com/questions/155188/trigger-button-click-with-javascript-on-enter-key-in-text-box 


Posted by developer on Thursday, September 03, 2009 3:52 AM
Permalink | Comments (1) | Post RSSRSS comment feed