What is alternative for Gel in catalog client script

Akshat7
Giga Contributor

Can anyone guide me what will be the alternative for gel. Below is the onload client script to hide Order now button

 

// Hide Cart - Order Now button.

function onLoad() {

gel("cart").style.display="none";
}

7 REPLIES 7

Ct111
Giga Sage

Chk the comments of Brad Tipton n Srikanth

https://community.servicenow.com/community?id=community_question&sys_id=4fc84b61db5cdbc01dcaf3231f96...

 

Mark my ANSWER as CORRECt n also HELPFUL if it helped.

sayali udgave
Kilo Guru

Hi Akshat,

use

document.getElementById('order_now').style.display="none";

 

Write this line onLoad() catalog client script

 

Thanks

 

Mark helpful if my response help to solve your problem

document.getElementById is not functional now.

Hi Akshat,

We can hide order now without script as well.

1.go on catalog item list view

2.select your catalog item and use personalized list

3. there is an option in list bucket of Hide Order now

4. you just have to set that value to true

 

Try this it worked for me without any script.

Thanks

 

Mark helpful if my response help to solve your problem