Hi Guys,
I have below input hidden with value ="/fr/images/findacourse_logo_tcm10-268.gif".
<input type="hidden" id="Qt_Email_Image" value="/fr/images/findacourse_logo_tcm10-268.gif"/>
I have another input image below with src = "/images/quote/Quote_Email_Button.JPG"
<tr>
<td>
</td>
<td colspan="2" class="">
<input type="image" border="0" alt="Email me this quote " src="/images/quote/Quote_Email_Button.JPG" id="Quote_btnEmail" name="Quote:btnEmail"/>
</td>
</tr>
Now I want at runtime the input image src gets replaced with above input hidden value and will show above image instead of image link in src. So that my above html becomes
<tr>
<td>
</td>
<td colspan="2" class="">
<input type="image" border="0" alt="Email me this quote " src="/fr/images/findacourse_logo_tcm10-268.gif" id="Quote_btnEmail" name="Quote:btnEmail"/>
</td>
</tr>
I want to use Jquery for above solution, please suggest!
Thanks.