I want to change the value of a param element which has a specific name. In this case the name attribute is 'filter' and it also has an attribute value which I want to change to the selected value 1 , 2 or 3.
jQuery( document ).ready(function() {
$('#list').on('change', function() {
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<select id="list">
<option value="" selected="selected" disabled="disabled">Options</option>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
<object class="paramList" width="939" height="945" style="display: none;">
<param name="test" value="blabla" />
<param name="okok" value="lalala" />
<param name="filter" value="CHANGE"/>
</object>
<div class="result"></div>