Tag Archives: AJAX

Semantic classes and IDs with Blue print

Blueprint is a compressor script that will renders all the various CSS bits that you need according to the given column numbers and sizes for each project into one compact CSS file. It also gives the freedom to define semantic classes … Continue reading

  • October 14, 2012 |
  • 0 Comments
Posted in Semantic web | Tagged , , , , , , , , , | Leave a comment

Simple ajax demo in kohana php….

/* view file script */ <script language=”javascript”> function get_sub_category(id) { var url = “/codes/get_sub_category/?id=”+id; $.post(url,function(feedback){ //alert(feedback); document.getElementById(‘sub_category_list’).innerHTML = feedback; $(‘#sub_cat_view’).show(‘slow’); }); } </script> <tr><td align=”right”><label>Category:</label></td><td><select id=”category” name=”category” title=”Select the Category” onchange=”return get_sub_category(this.value);”> <option value=”” >select</option> <?php foreach($this->main_category as $row) {?> … Continue reading

  • October 14, 2012 |
  • 0 Comments
Posted in Programming | Tagged , , , | Leave a comment

WSRP-network protocol standard

Web Services for Remote Portlets (WSRP) is network protocol standard designed for communications with remote portlets, approved by OASIS OASIS is a nonprofit consortium that drives standards for the advancement of structured information standards and adoption of open standards for … Continue reading

  • October 14, 2012 |
  • 0 Comments
Posted in Programming | Tagged , , , , , , , , , , , , , , | Leave a comment