Tuesday, January 26, 2016

go to top when scroll button show .


go to top when scroll button show .

working code

http://www.paulund.co.uk/how-to-create-an-animated-scroll-to-top-with-jquery


shahzad_samejo@yahoo.com

Thursday, January 21, 2016

Bootstrap notify js awsome



Go to url bootstrap

http://bootstrap-notify.remabledesigns.com/



shahzad_samejo@yahoo.com

jquery easy to use mags succesfully etc

here is the site links you can downlaod and use

http://malsup.com/jquery/block/#page


shahzad_samejo@yahoo.com

Tuesday, January 12, 2016

popup box on click keep open

first working only in firefox
----------------------------------------
1.
<script>
     $(document).ready(function(){
     $('#top_cart_itmes').click(function(e) {
    e.stopPropagation();
       });});
 
 
     </script>
2. working in chrome
<script>
     $(document).ready(function(){
 
 
   $('#top_cart_itmes').on({
"click":function(e){
      e.stopPropagation();
    }
    });
     </script>

3. both working fine in  both browsers
<script>
     $(document).ready(function(){
     $('#top_cart_itmes').click(function(e) {
    e.stopPropagation();
       });});
 
   $('#top_cart_itmes').on({
"click":function(e){
      e.stopPropagation();
    }
    });
     </script>

Friday, January 8, 2016

psd create standard size

PSD Create statandard

1 . full 1500px
2 . fixed width web sites 1180 its bootstrap standard.


















shahzad_samejo@yahoo.com