list of wordpress features

list of wordpress  features


1)WordPress Pages
2)wordpress themes
3)users management
4)plugins(lot of plugins like contact page,galllery plugin..etc)
5)creating and manage content
6)content tools
7)comments & discussion

onclike text field value null javascriprt

onclick text field value null javascript

 <script language="javascript">
function clearText(field){
    if (field.defaultValue == field.value) field.value = '';
    else if (field.value == '') field.value = field.defaultValue;

}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<input name="name" type="text"  value="enter" onClick="clearText(this)">
</body>
</html>

how can animate div in jquery

how can animate div in jquery

<!DOCTYPE html>
<html>
<head>
  <style>
div { width: 60px; height: 60px; float: left; }
.first { background-color: #3f3; }
.second { background-color: #33f;}
</style>
  <script src="http://code.jquery.com/jquery-1.4.4.js"></script>
</head>
<body>
  
<p><button>Run</button></p>
<div class="first"></div>
<div class="second"></div>
<script>
    $("button").click(function() {
      $("div.first").slideUp(300).delay(800).fadeIn(400);
      $("div.second").slideUp(300).fadeIn(400);
    });
</script>

</body>
</html>

Text fields click mouse hide jquery code

Text fields click mouse hide jquery code



<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
</head>
<body>
<input type="text" name="cvv" id="TestDiv">
</body>
<script type="text/javascript">
$(function()
{
$('#TestDiv').click(function()
{
$(this).css({cursor: 'none'});
});
});
</script>
</html>

fadein code in jquery

fade in code in jquery


<div id="clickme">
      Click here
    </div>

    <img id="book" src="book.png" alt="" width="100" height="123" />
    With the element initially hidden, we can show it slowly:
    $('#clickme').click(function() {
      $('#book').fadeIn('slow', function() {
        // Animation complete
      });
    });

fade out code in jquery

fade out code in jquery

<div id="clickme">
  Click here
</div>

<img id="book" src="book.png" alt="" width="100" height="123" />
$('#clickme').click(function() {
  $('#book').fadeOut('slow', function() {
    // Animation complete.
  });
});

how can install wordpress

how can install wordpress


1) First download wordpress file from wordpress.org
2) you will get zip file then extract file
3) upload file server public_html file tree
4) make database
5) run files on public_html
6) you can see welcome message wordpress then put need information like db,username,password,dbhost...etc
7) submit details
8) you can get success message

wordpress features

wordpress  features


1)WordPress Pages
2)wordpress themes
3)users management
4)plugins(lot of plugins like contact page,galllery plugin..etc)
5)creating and manage content
6)content tools
7)comments & discussion

what is wordpress

what is wordpress


Wordpress is most popular content management system,it has lot of  features like workflow, a plugin architecture and powered by php and mysql..