//show edit profile field links
cj(function() {
// show edit for main profile
- cj('select[id^="custom_p"]').live( 'change', function( event ) {
+ cj(document).on('change', 'select[id^="custom_p"]', function( event ) {
buildLinks( cj(this), cj(this).val());
});
});
//show edit profile field links in additional participant
- cj('select[id^="additional_custom_p"]').live( 'change', function( event ) {
+ cj(document).on('change', 'select[id^="additional_custom_p"]', function( event ) {
buildLinks( cj(this), cj(this).val());
});
{literal}
<script type="text/javascript">
cj(document).ready(function(){
- cj('.distribute').live('blur', function() {
+ cj(document).on('blur', '.distribute', function() {
var totalAmount = 0;
cj('.distribute').each(function (){
if(cj(this).val( ).length > 0){