jquery html return php Uncaught SyntaxError: Unexpected identifier

I’m trying to jquery to return php value inside div I’m using .html() but I did get Uncaught SyntaxError: Unexpected identifier
my html code is :

<script>
        $( document ).ready(function()
            $('#post-msg-<?= $divId ?>').html(`<?= humhubactionsTextFormatAction::text_html($model->message) ?>`);
        });
    </script>

on inspect element I see my php code is :

$( document ).ready(function() {
            $('#post-msg-e369853df766fa44e1ed0ff613f563bd').html('<p></p><img src="http://127.0.0.1/index.php?file=d2dd907d-bfd4-40ab-832f-bd8c161fd60e+" alt="" title="" />
<p> 
            <div class="div-div">
                <div>
                    <div class="div-title-description">
                        <h2>
                            <span class="div-title">Title-text</span>
                        </h2>
                        <p class="div-description">Description - text </p>
                    </div>                
                </div>
            </div>
        </p>
');
        });