i have 2 webpages: xxx.com\index.php and xxx.com\test.php
what i am trying to accomplish is when i click a button on index.php something to change on the test.php, maybe something like:
$('input#submit').click(function() {
$('.online_sent'). show();
});
where input#submit in on index.php and .online_sent in on test.php
i'm not using iframes, they are just 2 webpages, more exactly 2 sub-webpages on the same domain