Skip to main content

Home/ jquery/ Group items matching "javascript" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
1More

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.
2More

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.”
1More

David Walsh Blog :: PHP, MySQL, CSS, Javascript, MooTools, and Everything Else - 0 views

  •  
    Become a complete programmer with PHP, CSS, MooTools, jQuery, and everything else.
8More

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" });
1More

Realtime Related Tweets Bar: Another jQuery Plugin - 0 views

  •  
    With all the buzz lately about Twitter real-time search. Why don't you show real-time tweets bar related to your posts from your twitter timeline or from anybody or even limit it by a geocode coordinates!
‹ Previous 21 - 40 of 95 Next › Last »
Showing 20 items per page