drdhaval2785 / SanskritSorting

Codes written by Dr. Dhaval Patel for Sanskrit Natural Language Programming
2 stars 1 forks source link

Redundant <head> #29

Closed gasyoun closed 9 years ago

gasyoun commented 9 years ago

In last devanagarisorted3.html we have 2 different heads right now, let's unite or kill the 2nd:

<head>
  <META HTTP-EQUIV="Content-Language" CONTENT="HI">
  <!--<meta name="language" content="hi"> -->
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  </meta>
<!--... including jquery. -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js" ></script>
<!--... script.js is javascript which we use to make the frontend interective for user feedback. Whenever the user clicks the radio button specified in script.js, the data is sent to ajax.php and then output from ajax.php is shown in the frontend. This process may continue as long as you want. -->
<script src="script1.js" ></script>  
</head>

and

<head>
  <META HTTP-EQUIV="Content-Language" CONTENT="HI">
  <!--<meta name="language" content="hi"> -->
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  </meta>

</head>
drdhaval2785 commented 9 years ago

jquery is not needed as of now. Let's kill the first one.

drdhaval2785 commented 9 years ago

having jquery from external source may hamper testing offline. So removing it. Done