Sometimes it can make you questioned that to get value and to assign value of a DIV using jQuery can be performed by only one function and that is- $("#ElementID").val() With the same code as above we can assign value for this element in jquery.. $("#ElementID").val("The Value") the difference is to give argument in jquery val() function or not. But remember my last code will only assign value inside jquery operation. But text inside that element will not be changed.
Blog Posts
BDNext is one of my dreamy project I have ever implemented any other project. I am working on it regularly though I am running with rush hour. Basically BDNext will be my complete portfolio where I have implemented most of the technical skills here. I wish success for BDNext.
Nokkhotro Blog is my first project in Zend Framework. I am feeling like a doll with the code. :d It’s great to start Zend Framework and it’s also proved that I am compatible with anyone anywhere. Because new zend team is supporting me well and I am instructing them. Feeling good.
?Start GIT for new project? To start GIT for your new project just use the following command: $ mkdir /path/to/your/project $ cd /path/to/your/project $ git init $ git remote add origin https://YourGitURL.git
Git is a version control system that track your changes in your specific files. You can track changes, add commit on every changes, undo/redo the changes to a certain stage. It’s very useful version control system for software engineers. Writing a large software without Git can’t be imaginable. Most importantly it’s very difficult to develop a single software by multiple software engineer as a team. You need to track who is changing where and who is adding new feature. You …