Firefox Doesn't Load Button in Cell on Second Page and Beyond
Firefox Doesn't Load Button in Cell on Second Page and Beyond
I installed the Wordpress Plug-in wp-tables reloaded which is based on these DataTables. I am trying to use the table to organize mp3 files and I have a play button for each row. The table loads the play buttons on the first page but it does not load the button for any other pages or if you expand the table beyond what is displayed on page load.
This only happens with Firefox and older versions of IE. It works fine on IE9, Safari and Chrome. I have search through various sites and haven't come up with a cause for this.
This only happens with Firefox and older versions of IE. It works fine on IE9, Safari and Chrome. I have search through various sites and haven't come up with a cause for this.
This discussion has been closed.
Replies
Allan
http://174.121.227.2/~missionf/media/bible-teachings/
I am just starting to dive into Javascript so it isn't my greatest strength at this point. If you view this page with Firefox you can see the play buttons on page 1 but not on page 2. Would fnDrawCallback work to load these buttons?
The play buttons are added by adding [wpaudio url="http://www.url.com/file.mp3" text="|" dl="0"] or by adding class="wpaudio" to the links such as Artist - Song
$('#example').dataTable( {
"fnDrawCallback": function( oSettings ) {
alert( 'DataTables has redrawn the table' );
}
} );
} )
Does this go directly in the jquery.datatables.min.js file? Do I need to replace anything other than the #example with the ID of what I am trying to load?
_wpaudio.enc['wpaudio-4eec270e6ee06'] = '\u0068\u0074\u0074\u0070\...
[/code]
Only on Firefox, the first page, the MP3 Player creates a button with the above code and loads the play button with it.
On the second page it looks like this
[code]
_wpaudio.enc['wpaudio-4eec270e6cfc7'] = '\u0068\u0074\u0074\...
|
[/code]
The wpaudio-container class is missing along with the
Allan