Click here to Skip to main content
15,893,487 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello Sir,
I want to Use Color Picker using Jquery but Jquery Plugin not used.So help me..

Thanks In Advanced..
Posted

If you are not using jQuery plugin in this case use HTML5 which will create color picker
<input type="color" />
 
Share this answer
 
Comments
keyur_raval 10-Apr-14 7:15am    
Ok Thanks Sir .... But When Open Color Picker Then I am Selecting Any Color That Color Value How to get I am ....
Snesh Prajapati 10-Apr-14 7:27am    
Html code:
<input type="color" id="choseColor">

jQuery Code:
$("#choseColor").change(function () {
var selectedColor = $(this).val();
alert(selectedColor);
});
Snesh Prajapati 10-Apr-14 7:29am    
Sorry for spelling mistake in id property "chooseColor"
keyur_raval 10-Apr-14 8:29am    
thanks sir it's working but i want to set Color Picker position how...
Snesh Prajapati 10-Apr-14 8:54am    
http://html.net/tutorials/css/lesson14.php
Get it from colorpicker-download[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900