Testing page:
http://engineering.forumotion.info/t16-share-helpful-linksTesting info: username: claudion ; psw: bolibokhan

Background: You enter some text in message editor textbox; press send;
page (& not popup) appears stating 'Message successfully recorded...return to message'
Send button HTML
- <input type="submit" value="Send" class="button2" name="post">
Limitations: Cannot edit template/html ...had to be done via javascript/jquery
Objective: to replace Send button with a custom one such as one you press it (after message is entered) you be
redirected back to your
current page(URL) & 'Message successfully recorded...return to message' page is thus
skipped.Abstract ideas:
1] Get the href of current page via a function
- function threadurl(href) {
- $.get(href, function() {
- window.location.reload();
- });
- }
2] replace 'Send' button with custom one (with class: button2...& other attributes) & somehow add
- <a onclick="threadurl.....