Skip to main content

Home/ Groups/ jquery
Mike More

Google Buzz Widget - A jQuery Plugin - 1 views

  •  
    This is a jQuery widget for the brand new social network -Google Buzz- that you can embed anywhere to integrate your buzz stream into your page.
Mike More

Paging Listbox; Another jQuery Plugin - 1 views

  •  
    Few months ago I posted a Javascript class on how to Implement a paging listbox using jQuery. which has drawn a lot of traffic and few questions lately so I thought it would be more convenient to rewrite the code as jQuery plugin and make few enhancements plus providing a complete sample code in VB.Net and C#.\n
Mike More

Combining Your Trending Stories with Twitter Trackbacks! - 1 views

  •  
    This is a simple jQuery tutorial to display Twitter trending stories of your website and their Twitter trackbacks by combining 2 of my jQuery plugins - Popular on Twitter Widget & Twitter Trackbacks Widget.
Mike More

Google+ Search Widget - 1 views

  •  
    Highly customizable search widget for Google+ that is inspired by Twitter widgets. This widget searches across the body and comments of public posts and displays a summarized version of matching posts with any attached images.
alfred westerveld

45+ Fresh Out of the oven jQuery Plugins - 0 views

  •  
    45+ fresh out of the oven jQuery Plugins.
lilin_fr

Brandon Aaron » Gradient - 0 views

  • The gradient plugin adds a dynamically created configurable gradient to the background of an element without the use of images.
Rika Y

moBlur.org - jQuery + jFlot - Plots, Canvas and Charts - 0 views

  • Last 20 days visitors (example chart) 04 mar05 mar06 mar07 mar08 mar09 mar10 mar11 mar12 mar13 mar14 mar15 mar16 mar17 mar18 mar19 mar20 mar21 mar22 mar23 mar
pagetribe .

Working with jQuery, Part 1: Bringing desktop applications to the browser - 0 views

shared by pagetribe . on 17 Dec 08 - Cached
  • $("p").css("background", "#ff0000");
pagetribe .

Working with jQuery, Part 2: Building tomorrow's Web applications today - 0 views

shared by pagetribe . on 17 Dec 08 - Cached
  • // In this example, each row in a table will get a red background when // the mouse moves over it and a white background when the mouse leaves. $("tr").hover(function(){ $(this).css("background","#0000ff"); }, function(){ $(this).css("background","#ffffff"); });
  • attr(name)
  • // will change the image source, and the image displayed on the page will change $("img").attr("src", "myimage.jpg");
  • ...5 more annotations...
  • // use the val() function to get the text inside the textfield
  • // change the background of every div to red $("div").css("backgroundColor", "#ff0000"); // - or - $("div").css("backgroundColor", "red"); // - or - $("div").css({backgroundColor: "#ff0000"}); // notice the braces and lack of quotes
  • see the problem with them
  • You would definitely not want to place style code into the JavaScript code if you can help it.
  • <img src="/images/space.gif" id="spacer" class="a b c" alt="blank"> // Calls to the attr() function will return the following $("#spacer").attr("src"); // will return "/images/space.gif" $("#spacer").attr("alt"); // will return "blank" // Similarly, you can access the ID in the same way $(img).each(function(){ $(this).attr("id"); // will return "spacer" });
pagetribe .

Working with jQuery, Part 3: Rich Internet applications with jQuery and Ajax : JQuery: ... - 0 views

shared by pagetribe . on 17 Dec 08 - Cached
  • // hides every other <p> on the page $("p:odd").hide();
  • // place a username and password input field on the page <input type=text id="username"> <input type=password id="pass"> // call a server-based PHP file that will process the information passed to it $.post("myFormProcessor.php", {username: $("#username").val(), password: $("#pass").val()}); // conversely, this PHP file could also return information to the function, from which // you could process the results $.post("myFormProcessor.php", {username: $("#username").val(), password: $("#pass").val()}, function(data){ // the data variable contains the text returned from the server, you don't // have to set anything up ahead of time, jQuery will do it all for you if (data != "ERROR") $("#responseDiv").text(data); } );
  • What does this mean? Well, based on the ability to load any Web page, and then parse it with jQuery, you have at your hands a very effective and easy-to-program page scraper, from which you can gather any type of information from any page.
  • ...1 more annotation...
  • <%=message.id %>
pagetribe .

Tutorials:Edit in Place with Ajax - jQuery JavaScript Library - 0 views

  • var t = $(obj).parent().siblings(0).val();
  • “The obj (save button) has a parent (a div)… go find it. This object has one or more objects on the same level of the DOM tree… I want the first one. And grab the value of that object.”
alfred westerveld

jwysiwyg - Google Code - 0 views

  •  
    wysiwyg jquery plugin
  •  
    really good stuff~
lilin_fr

Ariel Flesler: jQuery.SerialScroll - 0 views

  • This plugin allows you to easily animate any series of elements, by sequentially scrolling them. It uses jQuery.ScrollTo to achieve the scrolling animation.
Mike More

Building Web Presentations Using jQuery Mobile - 0 views

  •  
    jQuery mobile framework provides easily themeable, HTML5-based interface with support for pages transitions, therefore it would be very easy to create simple web presentations that will work on all popular smartphone and desktop platforms.
Mike More

15 Most Popular jQuery Plugins of June 2012 - 0 views

  •  
    Another month has passed and it's time for the jQuery plugins roundup. Keep on reading to see what plugins you might have missed in June 2012.
Mike More

Retrying AJAX Requests with jQuery ajaxPrefilter - 0 views

  •  
    When a request timeouts and you need to retry it, here is how to do it using ajaxPrefilter that was introduced in jQuery v1.5
Mike More

Delicious Button v1.1 - 0 views

  •  
    This version comes with a minor update to the Delicious save count button to handle the changes in Delicious API after it was acquired by AVOS. Delicious button was created as an alternative to the official Delicious button which didn't look like modern sharing buttons.
Mike More

18 Most Popular jQuery Plugins of March 2012 - 0 views

  •  
    It is time we go through our monthly roundup of the most popular jQuery plugins of March 2012, you will definitely want to try these.
‹ Previous 21 - 40 Next › Last »
Showing 20 items per page