Friday, 26 August 2016

Select All - onclick single select box need select all check boxes


Select All - onclick single select box need select all check boxes

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
</head>

<body>

<h2> This is for select all check boxes with <strong>single check box</strong></h2>
<input type="checkbox" id="ckbCheckAll" /> Select All
    <p id="checkBoxes">
        <input type="checkbox" class="checkBoxClass" id="Checkbox1" /> Radio
        <br />
        <input type="checkbox" class="checkBoxClass" id="Checkbox2" /> TV
        <br />
        <input type="checkbox" class="checkBoxClass" id="Checkbox3" /> Mobile
        <br />
        <input type="checkbox" class="checkBoxClass" id="Checkbox4" /> Tablet
        <br />
        <input type="checkbox" class="checkBoxClass" id="Checkbox5" /> Laptop
        <br />
    </p>
    
    <script>
    $(document).ready(function () {
    $("#ckbCheckAll").click(function () {
        $(".checkBoxClass").prop('checked', $(this).prop('checked'));
    });
});</script>
</body>
</html>

Monday, 15 August 2016

How reduce div background color opacity without effect to inside content or links

Hi,
I really Amazing.. I read many forums regarding how can reduce background DIV opacity without effect inside content or images... In all forums I find answer not possible, everyone saying some thing some things not working different browsers finaly top forums also saying not possible this thing but My requirement is need 100% this thing so I done experiment so successfully it is working

Just use like :   background : rgba(248, 248, 248, 0.7) !important ;
248 means it is white so white will transparent, if you need black background transparent use like
background : rgba(0, 0, 0, 0.7) !important ;

Thursday, 11 August 2016

Mobile Jquery External Links - How can add external links to mobile jquery website or application

Really I surprised everything is completed My mobile portal and I uploaded to  QA for testing but page links not working, really I surprised why it is not working everything is correct but not working...


This is mobile mobile portal and links working internal pages when I give other website links it is not working,,.... it is inteasting thing but I find solutions need to give

  rel='external' 

<a href='path'  rel='external'    >Link Text</a>