Hide text and input boxes during Get Quote process
You may find you want to hide some boxes during the Get Quote process, or just some headings. The following code is an example of how to do this.
//
// CLIENT-SIDE HIDING CODE
// The following example will hide the Title heading and input box shown on the Client screen of Get Quote
// admNetwork 2012
//
// don't do anything until the page has fully loaded
document.observe('dom:loaded', function() {
// hide unwanted elements
$$('table#ctl00_MainContentCell label.sub')[3].hide(); // title heading
$('ctl00_MainContent_UserTitle')[0].hide(); // title input box
});
To try this out, add the code above to your SchemeServe under Admin > Website > Custom Javascript.
Please sign in to leave a comment.
Comments
0 comments