$(document).ready( function() { //get current flash version. returns an array [major, fix] var flash_version = flashembed.getVersion(); var video_height = $("#video_container").height(); if (flash_version[0] == 0 || flash_version[0] < 9) { $("#video_container") .html('
You need Adobe Flash Player version 9 or higher to view this video.

Click here to Install
'); $("#flash_error") .css({ backgroundColor: '#000000', color: '#fff', fontSize: '15px', fontWeight: 'bold', height: (video_height - 40) + 'px', padding: '20px' }); } } );