I am using Twitter bootstrap, I have specified a modal
<div class="modal hide" id="modal-item">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">x</button>
<h3>Update Item</h3>
</div>
<form action="http://www.website.com/update" method="POST" class="form-horizontal">
<div class="modal-body">
Loading content...
</div>
<div class="modal-footer">
<a href="#" class="btn" data-dismiss="modal">Close</a>
<button class="btn btn-primary" type="submit">Update Item</button>
</div>
</form>
</div>
And the links
<a href="http://www.website.com/item/1" data-target="#modal-item" data-toggle="modal">Edit 1</a>
<a href="http://www.website.com/item/2" data-target="#modal-item" data-toggle="modal">Edit 2</a>
<a href="http://www.website.com/item/3" data-target="#modal-item" data-toggle="modal">Edit 2</a>
When i click on any of these link for the first time, I see the correct content, but when i click on other links it shows the same content loaded for the first time, It doesnt update the content.
I want it to be updated everytime its clicked., I have Googled a lot but didn't find any solutions.
P.S : I can easily make it work via custom jQuery function, But i want to know if its possible with native Bootstrap modal remote function, as it should be easy enough And i guess i am just complicating things...