Whatever message this page gives is out now! Go check it out!

ColdFusion.Slider.show

Last update:
May 18, 2026

Description

Shows the slider control.

Function syntax

ColdFusion.Slider.show(name)

See also

History

ColdFusion 9: Added this function

Parameters

Parameter
Description
name
Specifies the value of the name attribute in the cfslider tag.

Returns

This function does not return any value.

Example

<h3>This is an example of the Slider.show function. Click the Show Slider button to show the slider.</h3> 
 <script language="JavaScript" type="text/javascript"> 
 function onload(){ 
 ColdFusion.Slider.hide('sliderID'); 
 } 
 function show(){ 
 ColdFusion.Slider.show('sliderID'); 
 } 
 </script> 
 <br> 
 <cfform name="form01"> 
 <br/> 
 <cfslider name="sliderID" format="HTML" 
 vertical="false" width="350" 
 value="100" min="0" max="200" 
 increment="10" tip="true"/> 
 <cfinput type="button" name="htmlbutton" 
 value="Show Slider" onclick="show()"> 
 </cfform>

Share this page

Was this page helpful?
We're glad. Tell us how this page helped.
We're sorry. Can you tell us what didn't work for you?
Thank you for your feedback. Your response will help improve this page.

On this page