Click here to Skip to main content
15,878,970 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello friends,
I have html client side file, with javascript and css connected files to html.
I want to Convert it to XML/XSLT. I don't know how to do that! can you help plz?

here is my code:

HTML
<HTML>
<HEAD>
    <TITLE> </TITLE>
    <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
    <link rel="stylesheet" href="jquery.popup.css" type="text/css">
    <link rel="stylesheet" type="text/css" href="cssfile.css">
    <script type="text/javascript" src="jsFile.js"></script>
    <script src="jsFile.js"></script>
</HEAD>
<BODY>
    <div id="div3">
        <TABLE id="dataTable">
            <TR>
                <TH> Modify </TH>
                <TH> First Name </TH>
                <TH> Last Name </TH>
            </TR>
        </TABLE>
    </div>
    <div id="div2">
        <INPUT type="button" value="Delete Row" onclick="deleteRow('dataTable')"/>
        <INPUT id="addStuff" type="submit" class="js__p_start" value="Add Row"  />
    </div>


    <div class="popup js__popup js__slide_top" style="margin-removed -230px;"> 
				<a href="#" class="p_close js__p_close" title="Close"></a>
<div class="p_content">
    <input type="text" id="fname" placeholder="First Name">
    <input type="text" id="lname" placeholder="Last Name">
    <input type="button" class="js__p_close" id="submit" value="Submit" onclick="addRow('dataTable')">

</div>
</div>
</BODY>
</HTML>
Posted
Comments
ZurdoDev 3-Dec-14 10:34am    
What exactly are you trying to do? I'm not sure trying to convert html to xml is a good idea. Javascript would be weird as XML so what exactly are you trying to do?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900