jQuery Toggle is used to toggle a region. In simple words we can say it is used to show and hide a selected element / region. The toggle() method toggles between hide() and show() for the selected region / elements.
You may encounter with this error message when creating / renaming / updating a category in wordpress:
Sometimes we need to select only last item in a list. with CSS you can easily select only the last item and apply special CSS styling.
In this jQuery tutorial I will show you how to create jQuery Accordion. Accordion is very useful to show many contents in a small space and in fancy way.
Playing with jQuery is really fun. In this tutorial I will show you, how jQuery can be used to perform cool animation.
jQuery let you select CSS elements and perform some action on that CSS element. Selecting a CSS elements in jQuery is very easy. Just wrap the CSS element in $(“”) You can also use single quota, like $(”)
In this jQuery tutorial I will show you how you can use jQuery to show hide something or a DIV region with a click. Its very easy to do with jQuery.
For any programming language variables are the bread and butter of every. PHP also have variable features. variables help you store and retrive data. PHP supports a number of different variable types like integers, floating point numbers, strings and arrays.
PHP supports both single-line comment and multi-line comment blocks. For a single line comment use // or # and all text to the right of this symbol will be ignored by PHP interpreter.
Let’s see how a basic HTML page with PHP can be setup. Below is a basic HTML page: <!DOCTYPE html> <html> <title>my first PHP page</title> <head></head> <body> <!– our php codes here –> </body> </html> PHP codes syntax is: <?php [..]