how to filter a multilevel menu with a search input
Filter a multilevel menu with a search input Mostly you can use select2 js for drop down which are basically use html select tag, but sometime we need same functionality on ul -li...
Filter a multilevel menu with a search input Mostly you can use select2 js for drop down which are basically use html select tag, but sometime we need same functionality on ul -li...
Exclude directory while making tar tar command basically used on Linux to compress/uncompress any folder. Normally if we want to make a tar of whole folder then we can use follow...
Mysql group concatenate select to string In select query if you want to concatenate all values of a column(all cells) in a single string with a separator. Then you can use a pre...
Whenever we open new window with jQuery or JavaScript often it will clear all old session. For example you have a dashboard screen after user login and here have a link to open new...
If we have list of item or array of response and running .each() to parse them. After finishing loop we want to execute some code or any other function then we can use simple loop...
Many time we have a series of number in rows and we want to match only first 4 or 5 numbers in that row then we can use mysql inbuilt function. For example I have a doctor table...
In normal Ajax post we send form in serialize way, but suppose you want to send some extra value to you php page then you can do as below. data: $('#youForm).serialize() +...
Highlight jQuery Autocomplete results that match the text already typed I am assuming that you already implemented jQuery Autocomplete . Now you want to just highlight the part of...
Solr edismax boost query Before starting keep in mind that SolrDisMaxQuery class was not part of the 2.0.0 release. But still you can download the current master branch from...
Many time we know only address don’t have coordinates or latitude and longitude. In such case we can use Google geo coder part . We have to pass only physical address and on...