I am successful in executing a change when I click on a radio button, but the problem is, when I reload the page, the radio button selections are retained, but the change is not. In other words, if I click radio button #1, it will lower the opacity of certain fields. When I come back to this page, all the fields have full opacity, and it is not until I click on the radio button again that it will execute the chance.
Here is my code:
(function($) {
// Document Ready
$(document).ready(function() {
// trigger change on the radio list to show selected field
$('#acf-feature_slide ul.radio_list li label input').trigger('change');
});
// Content Type change
$('#acf-feature_slide ul.radio_list li label input').live('change', function() {
// vars
var value = $(this).val();
// show the selected field
if( value == "internal" ) {
$(this).parentsUntil('tr').find('div.row-layout-field').eq(3).css('opacity', '1.0');
$(this).parentsUntil('tr').find('div.row-layout-field').eq(4).css('opacity', '0.2');
}
else if( value == "external" ) {
$(this).parentsUntil('tr').find('div.row-layout-field').eq(3).css('opacity', '0.2');
$(this).parentsUntil('tr').find('div.row-layout-field').eq(4).css('opacity', '1.0');
}
else if( value == "none" ) {
$(this).parentsUntil('tr').find('div.row-layout-field').eq(3).css('opacity', '0.2');
$(this).parentsUntil('tr').find('div.row-layout-field').eq(4).css('opacity', '0.2');
}
else {
$(this).parentsUntil('tr').find('div.row-layout-field').eq(3).css('opacity', '1.0');
$(this).parentsUntil('tr').find('div.row-layout-field').eq(4).css('opacity', '1.0');
}
});
})(jQuery);
Any help is greatly appreciated.
Thanks,
onaslivebecame deprecated in jQuery v1.7. api.jquery.com/on – yoshi Sep 5 '12 at 7:42F5) or do you also clean the cache along with it (shift + F5). While developing I recommend the latter one. – yoshi Sep 5 '12 at 7:51