Category Archive for: "Tips and Tricks"

  1. jQuery

    jQuery Add Div To Div Examples

    As the name suggests, it’s fairly simple! We will see how to use jQuery to add div to div. If you have followed my previous articles so far regarding how to add to div, then you definitely want to read this article as it discusses new approaches, tips and tricks and consists of new methods […]

  2. jQuery

    jQuery Add To Div Examples

    While working with jQuery, it may be desirable at times to add new data or info to a div. This is true especially when working with databases or with dynamic data. So in this article, I am going to share with you how to use jQuery to add to div. You can add another element […]

  3. jQuery

    jQuery Add Div Examples

    jQuery is a much “fun” JavaScript framework and I love it as it lets you do a lot in a snap! That said, have you ever wondered how to easily add a div to the web page? If not, then this article is for you. In this article, I am going to show how to […]

  4. jQuery

    jQuery add Method Examples

    “jQuery add” can be very confusing concept to understand, especially when you just came to know of it . So if you have just heard about it or wish to know more about it, this article is for you. In this article, I am going to share with you very easy examples for understanding jQuery .add() method. Read […]

  5. Demos

    PHP Replace Array Value Example

    One of the coolest things of array is that you can hold as much data as you need. So when dealing with arrays, there might have been a time when one would come across a requirement to replace or change array value with another value. In this article, I am going to show you how […]

  6. PHP

    PHP Delete Item From Array Examples

    Arrays, as always, have been a very important concept. While working with arrays, there might have been an instance where you wanted to delete an array element. In this article, I am going to share with you easy ways to use PHP to delete item from array by means of easy examples.

  7. PHP

    Using PHP To Find Value In Array

    Arrays are very important concept, be it any programming language. So while working with arrays, there might be a necessity to find a specific value in an array. In this article, I am going to share a very simple yet easy way to use  PHP to find value in array by means of examples. How to […]

  8. PHP

    How To Delete File Or Remove File Using PHP Examples

    When working with files in PHP, there may be a necessity to create files dynamically and at the same time, remove file or delete file using PHP.  In this article, I am going to share a very easy way to delete a file using PHP. The actual code is just 1 line, so it’s super easy to […]

  9. PHP

    How To Remove Last Character From String Using PHP – Examples

    Some times while dealing with strings in PHP, it may be required to remove the last character of a string. In this article, I am going to share very easy ways of removing last character from string using PHP by means of multiple examples.