Can anyone please help me do this with javascript Screenshote? It must be written like this. User inputs rgb color for first column (green,red,blue) and inputs number of columns. Then this must be in linear fading and every column has to have popup window with that rgb color. If anyone can help me I would really appreciate it. It would be great if anyone can at least point me to something that can help me. Thank you

So far i have this:

<html>
    <head>
        <title>Vaja 6.2</title>
        <style>
			.cell {
				background-color: #000;
			}
            </style>
        <script src="http://code.jquery.com/jquery-latest.js"></script>
    </head>
    <body >
        
        <center>
            <SCRIPT LANGUAGE="JavaScript">
                
                clr=new Array('00','20','40','60','80','a0','c0','ff');
                for (i=0;i<10;i++) 
                { 
                    document.write("<table border=0 width=100% height=100% cellspacing=0 cellpadding=0>");

                        document.write("<tr>");
                        for (k=0;k<10;k++) 
                        {
                            document.write('<td bgcolor="#'+clr[i]+clr[k]+'">');
                            document.write(clr[i]+clr[k]+' </font></tt></td>'); 
                        }
                        document.write("</tr>"); 

                    document.write("</table><br>"); 
                }
                </script>
        </center>
        
    </body>
</html>

its far from what i need, but i hope you guys will help me. Thanks

anyone?

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.