$(document).ready(function()
means that the code that follows, will start as soon as the page has loaded.
$("#pgtitle").html("Customer Service Feedback");
simply passes the value Customer Service Feedback
to the HTML element pgtitle
.
if you look on the page for the pgtitle
element, I’m sure you will see it contains the text Customer Service Feedback
! 🙂
solved unidentified javascript function [closed]