Javascript Variable on Internet Explorer

8 07 2007

Javascript variable name can not be same as DOM element id name on Microsoft Internet Explorer. If it same, it will caused error on IE.

Example:

This example will caused error on IE.

<div id="varFoo" >Foo Bar</div>
<script type="text/javascript">
varFoo = document.getElementById('varFoo');
alert(varFoo);
</script>




PHP’s Control Structures

6 07 2007

if

<?php
if (expr)
   statement;
?>
<?php
if (expr)
   statement;
else
   statement;
?>
<?php
if (expr)
   statement;
else if (expr)
   statement;
else if (expr)
   statement;
else
   statement;
?> Read the rest of this entry »




Knowledge Management at a Glance

29 06 2007

http://en.wikipedia.org/wiki/Knowledge_management

http://en.wikipedia.org/wiki/Tacit_knowledge

http://www.systems-thinking.org/kmgmt/kmgmt.htm

KM Toolkit:

  1. The KM Fact Sheet,
  2. Knowledge Sharing,
  3. Knowledge Management Implementation Plan Template,
  4. The Knowledge Management Organization,
  5. Knowledge Management Assessment and ROI,
  6. Knowledge Management Tools,
  7. Knowledge Ecomomy and KM Future,
  8. Knowledge Management Systems and Workshop,

I need those toolkit..





How To Create Multiple Blog at WordPress.com

29 06 2007

Read this page, wrote by Matt (founder of wordpress.com):
http://wordpress.com/blog/2006/04/05/unlimited-blogs/





Hello world!

29 06 2007

I’m interested to Knowledge Management and learning about it now. I think blog could be a simply KM tool. I’ll try to manage my knowledge using this blog. Let see how far i could manage my knowledge… :)