Picasa アカウントを使用して画像ギャラリーを表示できる Picasa Web Integrator (PWI) コードを使用しています。フォームを使用してユーザーがキーワードを書き込むと、コードによって div が作成され、PWI が呼び出されます。
それは完全に機能しますが、ユーザーが更新せずに別のキーワードを選択できるようにするために、「戻る」ボタンを追加しようとしています。
しかし、コードはメモリをクリアしていないようで、結果は最初と同じです。
コードは次のとおりです。
//The button that the user presses when he has written the keyword.
$("#boton2").click(function() {
//Creates a new div
$(".shop3").append("<div></div>");
$('.shop3 > div').attr('id', 'container3');
//gets the keyword and creates a variable called "competidor"
competidor = $('#competidor_txt').val();
//calls for the PWI code...
$("#container3").pwi({
username: 'davidagnino',
mode: 'keyword',
...
//This part works perfectly.
//The "back" button that should delete the div called #container3
$('#back3').click(function() {
event.preventDefault();
competidor=null;
delete competidor;
$("#container3").empty(); //should make my div empty
$("#container3").remove(); //deletes the div...
});