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?

link|improve this question

57% accept rate
Where is the new value? – sathis Oct 12 '11 at 8:01
not sure but do you mean you see the input when the page is loaded? Or do you mean you set the value with jquery like $("#myTextField").val("new_value") – Manuel van Rijn Oct 12 '11 at 8:02
@sathis: The new value could be something like: <a href="#" onclick="addNewValue();">Add New Value</a> <script> function addNewValue() { document.getElementById('myTextField').value='new'; } </script> – txchou Oct 13 '11 at 1:36
actually I just tested it and the value showing up in the prettyPhoto window remains whatever is set as default in the HTML file even if I update it to something else onLoad of the page. – txchou Oct 13 '11 at 1:50
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.