Logo Background RSS

» Prototip

  • Using Prototip with AJAX (Part4)- Getting the Rules Right
    By Cung911 on October 12th, 2009 | 1 Comment1 Comment Comments
    Now we need some CSS. In a new file in your text editor add the following selectors and rules: #outerContainer { width:800px; } .container { width:370px; float:left; padding:7px 0 0 0; background:url(../images/containerTop.gif) no-repeat 0 0; margin:0 10px 10px 0; } .container .contents { width:350px; background:url(../images/containerBody.gif) no-repeat 0 100%; padding:0 10px 10px; } .contai...
  • Using Prototip with AJAX (Part2)- Adding Some PHP
    By Cung911 on October 10th, 2009 | No Comments Comments
    We’ll also need some PHP to finish off this example; in a new page in your text editor add the following code: <?php //connection information $host = “localhost”; $user = “root”; $password = “your_password_here“; $database = “prototip”; //make connection $server = mysql_connect($host, $user, $password); $connection = mysql_select_db($dat...
  • Using Prototip with AJAX (Part 1)
    By Cung911 on October 10th, 2009 | No Comments Comments
    Author: Dan Wellman In the first part of this tutorial we looked at the ease with which a default implementation of Prototip tooltips could be put on the page, and how, with just a little configuration we could change the appearance and behavior of the tooltips. In this part of the tutorial we’re going to take a look at the built-in AJAX functionality boasted by the plugin, and see how we can...