My Articles
Javascript Tip of the day
February 26, 2015

Javascript tip of the day Hello folks, I want to share with you my Javascript tip of the day. Have you ever wondered how to unselect a selected value in a dropdown lis using JQuery? Really simple: $("option:selected").prop("selected", false); Nice uh? Nice and simple! But wait, here is another Javascript tip of the day! What […]

Javascript tips
JQuery tip of the day
April 21, 2014

Do you want to select an element without knowing it’s complete ID using JQuery? There is a useful feature available using wildcards and regexp: search an element whose id starts with:  $(“[id^=’+prefix+’]”) search an element whose id ends with:  $(“[id$=’+prefix+’]”) Enjoy!!

Javascript tips

Hello folks, Today I’d like to talk about how I used jQuery , HTML and  CSS  to build a simple slide show. Obviously this is only a wire frame so, it’s up to you making it beautiful!! So, open your favourite editor and let’s start. The problem: At job I had to display a bunch […]

Javascript tips

Hi to everyone, I’d like to show what’s my solution to Select/deselect a group of check boxes in a form. First of all we need something with some check boxes in it, and here is a table which suits our purposes: <table id="authors" style="border-collapse: collapse;" border="1"> <tbody> <tr> <th><input type="checkbox" id="checkall" onclick="checkUncheckAll('checkall');"></th> <th>Title</th> <th>Author</th> </tr> […]

By continuing to use the site, you agree to the use of cookies. more information

The cookie settings on this website are set to "allow cookies" to give you the best browsing experience possible. If you continue to use this website without changing your cookie settings or you click "Accept" below then you are consenting to this.

Close