Sunday, September 11, 2016

How to see Wi - Fi password of connected network in window 10

Guys, It's very easy to find out the password of connected wi-fi connection. those who are facing Problem. Follow below steps or watch video directly.


1. Head out mouse cursor over Wi-Fi icon
2. Right click and select "Open network and sharing center"
3. Click on connected Wi-Fi connection
4. Click on wireless properties
5. Click on security
6. Check on "show characters"

Now See Network security key.  This is your Wi-Fi password.

Checkout video 


Tuesday, September 6, 2016

bind javascript event for future element without attaching any event - DOMNodeInserted (alternative of .on )

1st approach what we did always 

$('body').on('click','.abcd',function () {
        $(this).prev('.teaseRestText').toggle();
        if ($(this).attr('toggle') == '0') {
            $(this).html('Show Less...').attr('toggle', 1);
        }
        else {
            $(this).html('Show More...').attr('toggle', 0);
        }
});


But sometimes, situation came that we don't have any event like "click " but still need a function to execute for dynamic elements. 

I came to this solution  



$(document).bind('DOMNodeInserted', function(event) {
    $('#table tr').each(function (e) {
        console.log(e);
    });
});


Saturday, August 27, 2016

How To install hotspot shield VPN proxy in chrome

Friday, August 19, 2016

Create Simple Chat Sever Using PHP and MySql

Do you want to create a simple chat server using php if yes then you are at right place.
Check out this snapshot click on below link to download package.



Create Simple Chat Sever Using PHP and MySql


Create Simple Chat Sever Using PHP and MySql


Click Here to Download this script


Saturday, August 6, 2016

How to store data in Hindi (unicode) language

some time we need to save data into another language such as Hindi.
if we want save Hindi font in MySQL then we have to take care of  collation 





Steps

 when you are creating a table, see collation column. select urf_general_ci. if you will choose another collation and will insert Hindi text then it will appear like "?????? ?? [][][][][][]"





Solution