Skip to main content

Home/ jquery/ Group items tagged php

Rss Feed Group items tagged

jdr santos

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.
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 %>
mikhail-miguel

Web 2.0 and grudge free buttons generator! - 0 views

  •  
    You can create a web 2.0 button in only 4 steps. You can paint your button with preloaded web 2.0 icons or upload your personal icon and customize the font of the text inserted. Enjoy with php, gd2 and Photoshop base button and jquery ajax powered. Hosting, housing windows and linux domain with php, mysql, gd2.
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.”
Alaa Al-Hussein

jQuery Animate - 0 views

  •  
    jQuery animation.
Alaa Al-Hussein

Scroll window smoothly in jQuery - 0 views

  •  
    Smooth window scrolling with jQuery
Joost Moerenburg

Flash CS3 call JQuery? - SitePoint Forums - 0 views

  • function showHome() { $('#samples').show(300); $('#testimonials').show(300); }
  • import flash.external.*; ExternalInterface.call("showHome", "");
Alaa Al-Hussein

jQuery Animate - Advanced - 6 views

  •  
    jQuery animate - How to. Advanced tutorial
mikhail-miguel

Téléchargement : Xoops kraven30 - 0 views

  •  
    Xoops Tips - TIPS - Themes - jQuery and XOOPS
1 - 20 of 20
Showing 20 items per page