jsp - How do i change image src using jquery? -
i want change image src jsp page through jquery. code right below
$('#image').attr("src","file:///d:/vow/themes/multiflex/webapp/multiflex/images/chart.png");
in jsp file have
<table> <tr style="padding-bottom:5px;"> <td> image </td> <td> <img id="image"/></td> <td> </td> </tr> </table>
but see no display on jsp page after run.i have source code , image in different directories.
i think because d seen d drive on client pc, wont let you. , if this, big security hole.
see below link
try relative path like
$("#image").attr("src", "/images/chart.png");
Comments
Post a Comment