"Form add some thing"
Bootstrap 3.0.0 Snippet by ghyath

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <div class="cont-form"> <form class="form-horizontal"> <div class="form-group"> <div class="col-sm-10 pull-right"> <input type="text" id="title" placeholder="title" class="form-control" name="title" > </div> </div> <div class="form-group"> <div class="col-sm-5 pull-right"> <input class="form-control" placeholder="Country" type="text" name="country"/> </div> <div class="col-sm-5 pull-right"> <input class="form-control" placeholder="amount" type="text" name="country"/> </div> </div> <div class="form-group"> <div class="col-sm-10 pull-right"> <select class="form-control" name="title"> <option value="">Category</option> <option>home</option> </select> </div> </div> <div class="form-group"> <div class="col-sm-10 pull-right"> <input type="file" id="fill-up"/> <div class="add-img" id="box-add">+</div> </div> </div> <div class="form-group"> <div class="col-sm-10 pull-right"> <textarea class="description form-control" placeholder="description"></textarea> </div> </div> <div class="form-group"> <div class="col-sm-10 pull-right"> <input class="form-control" placeholder="كلمات مساعدة للبحث"> </div> </div> </form> </div> </div> </div>
body{ background:#000; } .cont-form{ background:white; } #fill-up{ display:none; } .add-img{ background:#eee; padding:50px; display:block; text-align:center; font-size:50px; cursor:pointer; } textarea.description{ max-width:100%; height:300px; }
$("#box-add").on("click",function(){ $("#fill-up").click(); })

Related: See More


Questions / Comments: