Posts

Showing posts from 2017

JavaScript_Solution_21July2017

Hello Friends, While I start to work in javascript, I found the most important issue we are facing as follows.... --------------------------------------------------------------------------------------------------------------- ISSUE:- 1) var fromDate=document.getElementById("fromDate").value;       if(fromDate !== "undefined" && fromDate!=null)    etc....... ----------------------------------------------------------------------------------------------------------------- Solution:- 1) You have to sipmly check      if(fromDate); No need to write extra code  for that.... -------------------------------------------------------------------------------------------------------------------------- Thank you Pavan Dhokne
Masking insurance number in account creation 1)       header.js               Function call in  .JS      :-        hideNum(); 2)  function displayNum(x) {      var p = document.getElementById('employeeHSubscriberNum');      p.setAttribute('type', 'text');      return;              }        function hideNum() {    var p = document.getElementById('employeeHSubscriberNum');    var employeeHSubscriberNumValues = $('#employeeHSubscriberNum').val();    if(employeeHSubscriberNumValues!=null && employeeHSubscriberNumValues!=" ")    {   p.setAttribute('type', 'password');    }else{     $("#employeeHSubscriberNum").val("");    }    ...

More Than 1 Million Google Accounts Breached by Gooligan

Image
More Than 1 Million Google Accounts Breached by Gooligan Thanks Pavan Dhokne