I have a HTML page .In my head section i have below code
<link href="/Content/css/Stylesheet1.css" rel="stylesheet" type="text/css">
<link href="/Content/css/jquery.datepick.css" rel="stylesheet" type="text/css">
<script src="/Scripts/jquery-1.5.1.min.js" type="text/javascript"></script>
<script src="/Scripts/jquery/jquery.datepick.js" type="text/javascript"></script>
<script src="/Scripts/jquery/Script.js" type="text/javascript"></script>
How do I change the file path names of the above HTML elements to the below one using jquery dynamically
<link href="http://localhost:9090/Content/css/Stylesheet1.css" rel="stylesheet" type="text/css">
<link href="http://localhost:9090/Content/css/jquery.datepick.css" rel="stylesheet" type="text/css">
<script src="http://localhost:9090/Scripts/jquery-1.5.1.min.js" type="text/javascript"></script>
<script src="http://localhost:9090/Scripts/jquery/jquery.datepick.js" type="text/javascript"></script>
<script src="http://localhost:9090/Scripts/jquery/Script.js" type="text/javascript"></script