I have some inline content which contains form elements which I wish to populate then show in a prettyPhoto lightbox.
Example:
<a href="#inline-1" rel="prettyPhoto" >Link/a>
<div id="inline-1" style="display:none;">
<input type="text" value="old" id="myTextField"/>
</div>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto();
});
</script>
I'd like the myTextField field to be changed after the page is loaded then when you click on "Link" it should show the new value in myTextField instead of "old".
Edit: I'm still fairly new to Javascript and Ajax but I think the 'instance' of the form element on the page that is being loaded by prettyPhoto is whatever it is at the time the ready() function is loaded (sorry if my terminology is off). So if I were to change the element value document.getElementById('inline-1').value to "new" the prettyPhoto lightbox still shows "old". Does that make more sense?
$("#myTextField").val("new_value")– Manuel van Rijn Oct 12 '11 at 8:02