Sunday, August 11, 2013

popup Div most effective

 lightview.zip : Download

simplemodal effective div

Download Source : simplemodal.zip

black-white-web-icons-source

credit-card-validation

Facebook Like Button Start Count as 0 in Box Count



<iframe src="//www.facebook.com/plugins/like.php?locale=en_US&href=YOUR_URL_HERE&amp;layout=button_count&amp;show_faces=true&amp;width=500&amp;action=like&amp;font&amp;colorscheme=light&amp;height=23" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px; height:23px;" allowTransparency="true"></iframe>

blinking-text-using-jquery



1<!DOCTYPE html>
2
<html>


3
<head>
4
<meta charset="utf-8">

5
<title>Blinking Text | istockphp.com</title>
6
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>

7
<script type="text/javascript">
8
$(function() {

9
    var x;
10
        setInterval(function() {





11
                if(x == 0) {
12
                    $('.blinking').removeAttr('style');

13
                    x = 1;
14
                } else  {

15
                    if(x = 1) {
16
                        $('.blinking').css('color', 'red');

17
                        x = 0;
18
                    }

19
                }
20
        }, 500);

21
});
22
</script>

23

24
</head>

25

26
<body>

27
    <p class="blinking">istockphp.com</p>
28
</body>

29
</html>