Hi,I am new to jquery.i want to create a jquery form
When i click form link,form will open & background color change to white.
Need suggestion

When i clicked send sms link a form should be open & window background color turns to white(Which is working)
Need suggestion

<!DOCTYPE html>
<html>
<head>
<script src="js/jquery.tools.min.js"></script>
<script>
$(function() {
    $("#test").click(function() {
        // perform exposing for the clicked element
        $(this).expose();

    });
});
</script>
<link rel="stylesheet" type="text/css" href="http://static.flowplayer.org/tools/css/standalone.css"/>    
</head>
<body>
<style>
#test {
    border:1px solid #ccc;
    background-color:#fff;
    padding:2px;
    font-size:15px;
    margin:5px auto;
    text-align:center;
    width:300px;
}
</style>
<div id="test">Send Sms</div>
<strong>my html content
</strong
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.