Here is a quick tip how to check visibility state of a toggled element in jQuery: $('#element').toggle('slow', function() { if($(this).is(':hidden')) { $(this).text('This element is hidden.'... Read more
Look at examples below: Init filter: $(document).ready(function() { $('ul.dynamic-search-list').filterList({ inputSelector: '#filter-input' }); }); inputSelector is the only option required... Read more
Responsive design is an approach to web page creation that makes use of flexible layouts, flexible images and cascading style sheet media queries. You can now create your very own responsive... Read more
Namespaces required for methods 1 2 using System.Data; using System.Data.SqlClient; Namesapce System.Data is required for DataTable, and System.Data.SqlClient is required for SqlDataAdapter... Read more
If you’re a web developer and your development machine is a Mac you have likely discovered that “Web Sharing” was removed from OSX Mountain Lion. There are a few tutorials on the web that c... Read more
To sort Word Press posts by post modified date and time. You may need this to show posts that have recently updated or some other reason to sort this way. Word Press provide query_posts func... Read more