Facebook like What's In Your Mind Textbox Using PHP and Jquery
Submitted by argie on Wednesday, February 6, 2013 - 19:50.
Hi everyone this tutorial will teach you on how to create a facebook like post status textbox. This tutorial will teach thus beginner programmer who are planning to build an social networking site. This tutorial is made using php and jquery. To start this, let’s follow the steps below.
Rhe Finish code is look like the code bellow
Step 1: Creating Our Form
To create our form open your php editor and paste the code below and save it as “index.php”- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Update Box Demo</title>
- </head>
- <body>
- <div style="margin:50px; padding:10px; background-color:#f2f2f2; width:460px">
- <b>Focus on this text box</b><br />
- <textarea style="" id="content" placeholder="What's on your mind?"></textarea>
- <div id="button_block">
- <input type="submit" id="button" value=" Share "/><input type="submit" id='cancel' value=" cancel" />
- </div>
- </div>
- </body>
- </html>
Step 2: Writing Our Javascript
The primary function of this code is it Animate our form. Copy the code bellow and paste between the head tag of the index.php.- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
- <script type="text/javascript">
- $(function()
- {
- $("#content").focus(function()
- {
- $(this).animate({"height": "85px",}, "fast" );
- $("#button_block").slideDown("fast");
- return false;
- });
- $("#cancel").click(function()
- {
- $("#content").animate({"height": "30px",}, "fast" );
- $("#button_block").slideUp("fast");
- return false;
- });
- });
- </script>
Step 3: Creating Our CSS
The primary function of this code is it beautify our form. Copy the code bellow and paste between the head tag of the index.php.- <style>
- body
- {
- font-family:Arial, Helvetica, sans-serif;
- }
- #content
- {
- width:450px; height:30px;
- border:solid 2px #006699;
- font-family:Arial, Helvetica, sans-serif;
- font-size:14px;
- }
- #button
- {
- background-color:#006699;
- color:#ffffff;
- font-size:13px;
- font-weight:bold;
- padding:4px;
- }
- #cancel
- {
- background-color:#dedede;
- color:#000;
- font-size:13px;
- padding:4px;
- margin-left:10px;
- }
- #content
- {
- font-size:14px;
- max-width:450px;
- }
- #button_block
- {
- display:none;
- }
- </style>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Update Box Demo</title>
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
- <script type="text/javascript">
- $(function()
- {
- $("#content").focus(function()
- {
- $(this).animate({"height": "85px",}, "fast" );
- $("#button_block").slideDown("fast");
- return false;
- });
- $("#cancel").click(function()
- {
- $("#content").animate({"height": "30px",}, "fast" );
- $("#button_block").slideUp("fast");
- return false;
- });
- });
- </script>
- <style>
- body
- {
- font-family:Arial, Helvetica, sans-serif;
- }
- #content
- {
- width:450px; height:30px;
- border:solid 2px #006699;
- font-family:Arial, Helvetica, sans-serif;
- font-size:14px;
- }
- #button
- {
- background-color:#006699;
- color:#ffffff;
- font-size:13px;
- font-weight:bold;
- padding:4px;
- }
- #cancel
- {
- background-color:#dedede;
- color:#000;
- font-size:13px;
- padding:4px;
- margin-left:10px;
- }
- #content
- {
- font-size:14px;
- max-width:450px;
- }
- #button_block
- {
- display:none;
- }
- </style>
- </head>
- <body>
- <div style="margin:50px; padding:10px; background-color:#f2f2f2; width:460px; !important">
- <b>Focus on this text box</b><br />
- <textarea style="" id="content" placeholder="What's on your mind?"></textarea>
- <div id="button_block">
- <input type="submit" id="button" value=" Share "/><input type="submit" id='cancel' value=" cancel" />
- </div>
- </div>
- </body>
- </html>
Add new comment
- 96 views