Tag Archive for: "jquery-tips"

  1. jQuery

    jQuery appendTo Examples

    Using jQuery appendTo method, you can easily add content, dynamic or static. This is immensely helpful with inserting dynamic content in a div or any other element. In this article, I am going to share info on the appendTo() method along with easy to follow examples.

  2. jQuery

    jQuery append Method Examples

    If you ever wanted to insert content, text or html or both, after the content of the matched elements but did not know how to do it, then you can use the  jQuery append method. Using it, you can easily add content, dynamic or static. In this article, I am going to share info on the append() […]

  3. PHP

    PHP Convert HTML Entities back to their applicable characters

    If you have escaped raw html and want to convert the HTML Entities back to their applicable characters using PHP, then this can be done very easily using just 1 line of code. In this article, I am going to share a very simple way to do it. So read on to find out how […]

  4. jQuery

    jQuery for loop Examples

    If you are working with arrays, then at point or the other, you may have felt the need to iterate over array elements and get their individual values, etc. It’s very easy to iterate over array elements using for loop in jQuery and can be done using just couple of lines of code. So read […]

  5. WordPress

    Fix for: Fatal error: Call to undefined function get_avatar_url() in /wp-content/plugins/jetpack/functions.opengraph.php on line 104

    Do you use the JetPack plugin (from WordPress) on your website? Did you just start seeing an error when you visit the Authors page on your WordPress blog? Or did you see the following error anywhere on your blog: Fatal error: Call to undefined function get_avatar_url() in public_html/wp-content/plugins/jetpack/functions.opengraph.php on line 104? If yes, then just note that until this […]

  6. Articles

    jQuery Change Class Examples – Add Class, Remove Class, Toggle Class & more

    jQuery provides us with different methods to ease up the process of working with classes assigned to elements. Some of the main methods are to add class, remove Class, toggle Class & to check if an element has a class or not, change class using jQuery. In this article, I am going to discuss all […]

  7. jQuery

    jQuery Check Class Examples

    Do you wish to check if element has Class using jQuery but do not know where to begin? Worry no more! In this article, I am going to share a very easy and efficient way to check if any desired element has a specific class or not using jQuery. Read on to find out more.

  8. jQuery

    jQuery Count Elements Examples

    When working with different elements of a web page, it might be necessary at times to count the number of elements by using their class. In this article, I am going to share a very easy way to count the number of elements that have the same class using jQuery. The actual code is just […]

  9. jQuery

    jQuery Get Text Examples – Get Anchor Text Hyperlink Text & more

    Many times when working with different elements of a web page, we might feel the need to get it’s text. In this article, I am going to share a very easy way to get text of an anchor, a hyperlink or any other element using just 1 line code. Examples also follow, so read on.