Skip to content

Instantly share code, notes, and snippets.

View psk11's full-sized avatar

Prasad Kudalkar psk11

View GitHub Profile
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Change Return</title>
<script type="text/javascript" src="JScript.js"></script>
<script type="text/javascript">
function getChange(){
var kinds = ["Quarter","Nickle","Dime","Pennie"];
var values = [25,10,5,1];
@psk11
psk11 / NextPrime.html
Created March 18, 2015 13:07
Fine next prime number
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Find Next Prime Number</title>
<script type="text/javascript" src="JsFiles/JScript.js"></script>
<script type="text/javascript">
function checkPrime()
{
@psk11
psk11 / calculator.html
Created March 17, 2015 08:05
Claculator from html and javascript
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Calculator</title>
<style type="text/css">
button
{
font-family: "Times New Roman";
font-size: larger;
width:50px;