Java スクリプト コード
$("#category select").change(function(){
var category = $('select option:selected').html();
$.ajax({
type:"Post",
url:"collectiepost.php",
data:"category="+category,
cache:"false",
success:function(html){
$("select").html(html).find("option .category");
}
});
});
});
そのページのhtml出力collectiepost.php
<select id="ontwerper">
<option class="desinger">vikas</option>
</select>
<select id="category">
<option class="category">cloth1</option>
<option class="category">cloth2</option>
</select>
htmlのその部分だけを抽出したい
出力が必要
<select>
<option class="category">cloth1</option>
<option class="category">cloth2</option>
</select>
問題
しかし、そのようなすべてのオプションタグを表示する私のコード
<select>
<option class="desinger">vikas</option>
<option class="category">cloth1</option>
<option class="category">cloth2</option>
</select>