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


How to scale the jQuery UI font size for just the UI widgets

Just add (override) this .ui-widget{font-size:11px !important;} in your own style sheet.

Source: Click Here


Categories: CSS | Jquery
Posted by developer on Tuesday, December 15, 2009 4:57 AM
Permalink | Comments (0) | Post RSSRSS comment feed

JQuery UI Themes on Google CDN

      Source: http://blog.jqueryui.com/2009/03/jquery-ui-17/

 


Categories: CSS | Jquery
Posted by developer on Wednesday, December 09, 2009 2:40 AM
Permalink | Comments (0) | Post RSSRSS comment feed

Wrap an li element with an Anchor (link) element using JQuery

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

    <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />

    <title>Untitled 1</title>

 

    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>

 

    <script type="text/javascript">

        $(function() {

        var firstLi = $('li:first');

 

        var anchor = '<a href="javascript:void(0)" onclick="myclick(\'' + firstLi.text() + '\')"></a>';

        firstLi.wrap(anchor);

        });

 

        function myclick(test) {

            alert(test);

        }

    </script>

 

</head>

<body>

    <ul id="myUL">

        <li>Dav Letterman</li>

    </ul>

</body>

</html>


Categories: JavaScript | Jquery
Posted by developer on Wednesday, December 09, 2009 1:15 AM
Permalink | Comments (0) | Post RSSRSS comment feed

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

JQuery Get Radio Button Checked Value

<input type="radio" name="sucess" value="Yes" checked="checked" />Yes

<input type="radio" value="No" name="sucess" />

 

var radioValue = j("input[name='sucess']:checked").val();


Categories: Jquery
Posted by developer on Sunday, August 16, 2009 9:12 PM
Permalink | Comments (0) | Post RSSRSS comment feed

JQuery Set Link Target Attribute to _blank on click

<script type="text/javascript">

$(function(){

      $('a').click(function(){

            $(this).attr({ target: "_blank" });

      });

});

</script>


Categories: Jquery
Posted by developer on Thursday, August 13, 2009 3:44 AM
Permalink | Comments (0) | Post RSSRSS comment feed

JQuery articles 2009 Q3

  1. How to implement a news ticker with jQuery and ten lines of code
  2. Use ASP.NET AJAX to Track Time Spent on a Page
  3. Easy XML Consumption using jQuery
  4. jQuery Makes Parsing XML Easy
  5. jQuery and XML
  6. Reading XML with jQuery
  7. Create an Amazon Books Widget with jQuery and XML
  8. Calling Remote ASP.NET Web Services from JQuery
  9. Using jQuery with ASP .NET
  10. Consume .Net Web service using jQuery

Categories: JavaScript | Jquery
Posted by developer on Sunday, July 12, 2009 8:55 PM
Permalink | Comments (0) | Post RSSRSS comment feed

JQuery Articles 2009 Q2

  1. Replacing images at time intervals 1 & 2
  2. 20+ Wicked Proof of Concepts for Better use of jQuery/CSS .
  3. Create a Fancy F.A.Q. Page with JQuery
  4. jquery.scrollable 1.0.2
  5. Creating a Slick Auto-Playing Featured Content Slider
  6. Force Secure Form Submission
  7. Create an apple style menu and improve it via jQuery
  8. Image Menu with Jquery
  9. jQuery Ribbon
  10. Introducing MooTools ScrollSpy
  11. Targeting Advanced Elements in jQuery
  12. Top 5 jQuery Modal Plugins
  13. 15 Awesome jQuery plug-in
  14. 15 jQuery Plugins to enhance your HTML form elements
  15. 36 Eye-Catching Jquery Navigation Menus
  16. Essential Controls List (Jquery UI Developments)
  17. JQuery Tips
  18. Uniform Plugin (Uniform Form Controls)
  19. 11 keystrokes that made my jQuery selector run 10x faster
  20. Custom jQuery selectors

Categories: JavaScript | Jquery
Posted by developer on Thursday, May 14, 2009 8:58 AM
Permalink | Comments (0) | Post RSSRSS comment feed

ASP.NET and JQuery articles

  1. Lazy Loading jQuery Tabs with ASP.NET
  2. Handling JSON Arrays returned from ASP.NET Web Services with jQuery
  3. Build your own Whois Lookup with ASP.NET and jQuery
  4. Using Client-Side Custom Events in ASP.NET Applications
  5. Querying SharePoint List Items using jQuery
  6. JQuery - get a handle on a server element in javascript without using <%= elem.ClientID %>
  7. Smooth Cascading Effect with ASP.NET Panels using jQuery
  8. jQuery AJAX calls to a WCF REST Service
  9. CustomValidationControl and jQuery
  10. jMsAjax (jQuery Ms Ajax Plugin)
  11. JQuery Ajax with Class Arrays
  12. Consume an ASP.NET WebService returning List<> with Dates using jQuery
  13. GridView Confirmation Box Using JQuery BlockUI
  14. Setting the Default Input Focus and Default Button with JQuery: Thin ASP.NET 5
  15. Creating a Simple AJAX Master-Details View Using jQuery, JSON and jTemplates in ASP.Net
  16. Building Cascading DropDownList in ASP.Net Using jQuery and JSON
  17. Using complex types to make calling services less… complex

Categories: ASP.NET | Jquery
Posted by developer on Sunday, May 03, 2009 2:54 PM
Permalink | Comments (0) | Post RSSRSS comment feed