The problem is: I have a 'dynamic' link that I load from an iframe. Here's the code(dynamic because i want to load the link with today's date):
<div id="dropdown5" class="tab-pane fade">
<h3>SOMETHING</h3>
<iframe id="orariMilano"src="http://www.trenord.it/it/orari/consulta-orario-ferroviario.aspx?__EVENTTARGET=&__EVENTARGUMENT=&__LASTFOCUS=&ctl00%24ctl00%24ctl00%24ContentPlaceHolderDefault%24cp_content%24ctl01%24ucMotoreRisultati_6%24RadioButtonListAndataRitorno=A&ctl00%24ctl00%24ctl00%24ContentPlaceHolderDefault%24cp_content%24ctl01%24ucMotoreRisultati_6%24txtData=**HERE**&ctl00%24ctl00%24ctl00%24......."></iframe>
</div>
Where 'HERE' is the place where i want to put today's formatted date,like "dd/MM/yyyy"
- So my question is,can I get today's date and format that into "dd/MM/yyyy" format and pass it to the link from a JS or jQuery possibly?
Thank you in advance