Title: Bohmchri's Replies | WordPress.org

---

# Bohmchri

  [  ](https://wordpress.org/support/users/bohmchri/)

 *   [Profile](https://wordpress.org/support/users/bohmchri/)
 *   [Topics Started](https://wordpress.org/support/users/bohmchri/topics/)
 *   [Replies Created](https://wordpress.org/support/users/bohmchri/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/bohmchri/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/bohmchri/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/bohmchri/engagements/)
 *   [Favorites](https://wordpress.org/support/users/bohmchri/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Contact Form 7 Range Slider Output Number](https://wordpress.org/support/topic/contact-form-7-range-slider-output-number/)
 *  [Bohmchri](https://wordpress.org/support/users/bohmchri/)
 * (@bohmchri)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/contact-form-7-range-slider-output-number/#post-4709498)
 * Here’s my solution for showing values of ranges
 *     ```
       $(document).ready(function(){
       	$("input[type='range']").each(function(){
       		range_name = $(this).attr("name");
       		$(this).after("<span id="+range_name+"-val></span>");
       		$(this).on('mousedown',function(){
       			$(this).on('mousemove',function(){
       				range_name = $(this).attr("name");
       				range_value = $(this).attr("value");
       				$("#"+range_name+"-val").text(range_value);
       			});
       		});
       	});
       });
       ```
   
 * Hope it helps.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Pointing a domain to a network install on a network solutions package](https://wordpress.org/support/topic/pointing-a-domain-to-a-network-install-on-a-network-solutions-package/)
 *  Thread Starter [Bohmchri](https://wordpress.org/support/users/bohmchri/)
 * (@bohmchri)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/pointing-a-domain-to-a-network-install-on-a-network-solutions-package/#post-3148086)
 * Well you seem to have repeated what I said.
 * I was unable to find any support on this when I was experiencing the problem 
   and thought that I might post something for anyone else who may run into the 
   same issue.

Viewing 2 replies - 1 through 2 (of 2 total)