Select input elements with type=”file”


<!DOCTYPE html>
<html>
    <head>
        <script type="text/javascript" src="lib/jquery/jquery-1.3.2.js">
        </script>
        <script type="text/javascript">
            $(document).ready(function(){
                $(":file").css("background-color", "red");
            });
        </script>
    </head>
    <body>
        <form action="">
            Name: <input type="text" name="user" />
            <br/>
            File: <input type="file" name="myfile" />
        </form>
    </body>
</html>

Comments

Popular posts from this blog

371 - Ackermann Functions

Create many folder with one click