Need Assistance With Window.onload And Ie
I currently have a table of email templates. The user is able to click the template, and populate the email template field pending on the td that gets clicked. I have a JS script
Solution 1:
I see you're using jQuery, so maybe let's rewrite it
$(window).on('load', function() {
$('.test').on('click', function() {
var id = $(this).html();
$.get("/includes/adminPages/Update_Email.inc.php?selection_id=" + id, function(data) {
$('#test').html(data);
});
});
});
Post a Comment for "Need Assistance With Window.onload And Ie"