Checking for Leap year in C#

Bhaumik Patel 8:41 AM
Checking for Leap year in C# using System; public class Program { public static void Main() { Console.WriteLine("Ch...Read More
Checking for Leap year in C# Checking for Leap year in C# Reviewed by Bhaumik Patel on 8:41 AM Rating: 5

Days in a month in C#

Bhaumik Patel 7:17 PM
Days in a month in C# using System; public class Program { public static void Main() { Console.WriteLine("Days in a...Read More
Days in a month in C# Days in a month in C# Reviewed by Bhaumik Patel on 7:17 PM Rating: 5

knockout Style Binding

Bhaumik Patel 8:07 PM
Style data bindings in knockout.js var viewModel = { colorText: ko.observable('rgba( 80, 120, 160, 1)') }; ko.applyBindings(...Read More
knockout Style Binding knockout Style Binding Reviewed by Bhaumik Patel on 8:07 PM Rating: 5

C# DateTime Format

Bhaumik Patel 10:37 PM
C# DateTime Format using System; public class Program { public static void Main() { Console.WriteLine("C# DateTime ...Read More
C# DateTime Format C# DateTime Format Reviewed by Bhaumik Patel on 10:37 PM Rating: 5
Allow only numeric input in textbox using jQuery Allow only numeric input in textbox using jQuery Reviewed by Bhaumik Patel on 7:43 PM Rating: 5
Knockout JS Color Picker Binding Handler Knockout JS Color Picker Binding Handler Reviewed by Bhaumik Patel on 7:38 PM Rating: 5
HTML to Image Convert Using jQuery HTML to Image Convert Using jQuery Reviewed by Bhaumik Patel on 8:23 PM Rating: 5
Pure JavaScript Typewriter Effect With HTML Content Pure JavaScript Typewriter Effect With HTML Content Reviewed by Bhaumik Patel on 7:43 PM Rating: 5
Knockout JS Slide Down and Slide Up Using Check Box Knockout JS Slide Down and Slide Up Using Check Box Reviewed by Bhaumik Patel on 7:13 PM Rating: 5

Knockout JS One Time Bind Observable

Bhaumik Patel 7:36 PM
Only one time bind observable ko.bindingHandlers.oneTimeStyle = { init: function () { ko.bindingHandlers.style.update.appl...Read More
Knockout JS One Time Bind Observable Knockout JS One Time Bind Observable Reviewed by Bhaumik Patel on 7:36 PM Rating: 5
How to clear connection history in SQL Server Management Studio? How to clear connection history in SQL Server Management Studio? Reviewed by Bhaumik Patel on 1:06 AM Rating: 5
How to Convert Hexadecimal number to decimal in JavaScript? How to Convert Hexadecimal number to decimal in JavaScript? Reviewed by Bhaumik Patel on 7:37 PM Rating: 5
Insert NULL into SQL when string is empty Insert NULL into SQL when string is empty Reviewed by Bhaumik Patel on 7:36 PM Rating: 5
Different different type of call document ready Different different type of call document ready Reviewed by Bhaumik Patel on 9:08 AM Rating: 5
Happy New Year 2016 Happy New Year 2016 Reviewed by Bhaumik Patel on 12:00 AM Rating: 5

Merry Christmas

Bhaumik Patel 9:01 PM
Merry Christmas May your life be filled with joy and happiness and may each new day bring you moments to cherish . Read More
Merry Christmas Merry Christmas Reviewed by Bhaumik Patel on 9:01 PM Rating: 5
How to get current url in JavaScript and jQuery How to get current url in JavaScript and jQuery Reviewed by Bhaumik Patel on 7:28 PM Rating: 5
Bootstrap FAQ Filter With full text search Bootstrap FAQ Filter With full text search Reviewed by Bhaumik Patel on 7:02 PM Rating: 5

HTML Table Row Blink Background Color

Bhaumik Patel 2:16 AM
HTML table row highlight background color fade in and out using CSS @-webkit-keyframes blink { 50% { background: rgba(255,...Read More
HTML Table Row Blink Background Color HTML Table Row Blink Background Color Reviewed by Bhaumik Patel on 2:16 AM Rating: 5
How to get LAN IP of a client using .net c# How to get LAN IP of a client using .net c# Reviewed by Bhaumik Patel on 8:32 PM Rating: 5
How to Check if Internet connection is available using C# How to Check if Internet connection is available using C# Reviewed by Bhaumik Patel on 7:39 PM Rating: 5

Pure Javascript Countdown Timer

Bhaumik Patel 8:20 PM
Simple Pure JS Countdown Timer DEMO function countdownTimer(seconds) { if (seconds <= 0) { document.getElementById(&qu...Read More
Pure Javascript Countdown Timer Pure Javascript Countdown Timer Reviewed by Bhaumik Patel on 8:20 PM Rating: 5

Bootstrap FAQ Accordion

Bhaumik Patel 8:27 PM
Bootstrap FAQ Accordion DEMO <div class="container-fluid "> <div class="panel-group" id="faqAc...Read More
Bootstrap FAQ Accordion Bootstrap FAQ Accordion Reviewed by Bhaumik Patel on 8:27 PM Rating: 5

Convert currency into words

Bhaumik Patel 8:11 PM
Number to amount in words using Javascript DEMO function convertNumberToWords(amount) { var words = new Array(); words[0] = &...Read More
Convert currency into words Convert currency into words Reviewed by Bhaumik Patel on 8:11 PM Rating: 5

Fancybox afterLoad Callback

Bhaumik Patel 8:24 PM
Fancy box load on ajax success call On load of a fancybox from ajax, return a function to listen on the element in fancybox. jQuery(d...Read More
Fancybox afterLoad Callback Fancybox afterLoad Callback Reviewed by Bhaumik Patel on 8:24 PM Rating: 5

knockout js Datasource pagination

Bhaumik Patel 9:05 PM
HTML Table Pagination using Knockout JS function getAnimals() { var params = { limit: this.pager.limit(), startInd...Read More
knockout js Datasource pagination knockout js Datasource pagination Reviewed by Bhaumik Patel on 9:05 PM Rating: 5

jquery countdown remain seconds

Bhaumik Patel 8:27 PM
Reverse countdown timer show remaining seconds. 11 seconds remaining var counter = 15; var intervalId = null; function action() { ...Read More
jquery countdown remain seconds jquery countdown remain seconds Reviewed by Bhaumik Patel on 8:27 PM Rating: 5
knockoutjs set select default selected value knockoutjs set select default selected value Reviewed by Bhaumik Patel on 7:32 PM Rating: 5
knockout js pagination jquery ui modal knockout js pagination jquery ui modal Reviewed by Bhaumik Patel on 7:02 PM Rating: 5
How to move items in between two select lists using javascript How to move items in between two select lists using javascript Reviewed by Bhaumik Patel on 8:05 PM Rating: 5
jQuery UI autocomplete with a Knockout binding handler jQuery UI autocomplete with a Knockout binding handler Reviewed by Bhaumik Patel on 8:39 PM Rating: 5

DATETIME FORMAT IN SQL SERVER

Bhaumik Patel 8:09 PM
How to Format Date/Time in SQL Sometimes I can't find a better way to present something then through a series of code/examples, so, w...Read More
DATETIME FORMAT IN SQL SERVER DATETIME FORMAT IN SQL SERVER Reviewed by Bhaumik Patel on 8:09 PM Rating: 5

Get File Size Using jQuery

Bhaumik Patel 8:23 PM
How to check file size before uploading using jQuery Get File Size Using jQuery All Browsers function GetFileSize(fileid) { try { ...Read More
Get File Size Using jQuery Get File Size Using jQuery Reviewed by Bhaumik Patel on 8:23 PM Rating: 5

Bootstrap Accordion Group

Bhaumik Patel 7:04 PM
Bootstrap Accordion Group that collapses when clicking whole div and has chevrons DEMO Read More
Bootstrap Accordion Group Bootstrap Accordion Group Reviewed by Bhaumik Patel on 7:04 PM Rating: 5

Knockout js checkbox count

Bhaumik Patel 8:27 PM
Subscribe to a property inside of ObservableArray <div id="colorList"> Color List: <ul data-bind=" temp...Read More
Knockout js checkbox count Knockout js checkbox count Reviewed by Bhaumik Patel on 8:27 PM Rating: 5

on off button jquery

Bhaumik Patel 7:38 PM
Div on off button jquery <section id="stage"> <div class="slider-frame"> <span class="slider-bu...Read More
on off button jquery on off button jquery Reviewed by Bhaumik Patel on 7:38 PM Rating: 5
Slide toggle from right to left and left to right Slide toggle from right to left and left to right Reviewed by Bhaumik Patel on 8:21 PM Rating: 5

How to Refresh Page using jQuery

Bhaumik Patel 7:36 PM
Reload Page Using Javascript Parameter Values Parameter Type Description forceGet Boolean Optional. Specifies the type of...Read More
How to Refresh Page using jQuery How to Refresh Page using jQuery Reviewed by Bhaumik Patel on 7:36 PM Rating: 5

Ipad camera image changes orientation

Bhaumik Patel 9:27 AM
iPhone - Camera image changes orientation EXIF stands for "Exchangeable Image File Format". When processing photos, sometim...Read More
Ipad camera image changes orientation Ipad camera image changes orientation Reviewed by Bhaumik Patel on 9:27 AM Rating: 5
Vertical menu convert to horizontal menu responsive Vertical menu convert to horizontal menu responsive Reviewed by Bhaumik Patel on 8:00 PM Rating: 5
Calculating time difference in Minutes Hours Days Weeks Months Years Calculating time difference in Minutes Hours Days Weeks Months Years Reviewed by Bhaumik Patel on 8:19 PM Rating: 5

jQuery Keycode Cheatsheet

Bhaumik Patel 7:57 PM
jQuery Keycode Cheatsheet Collection DEMO function displayKeyCode(evt) { var textBox = getObject('txtChar'); var char...Read More
jQuery Keycode Cheatsheet jQuery Keycode Cheatsheet Reviewed by Bhaumik Patel on 7:57 PM Rating: 5
bootstrap carousel slider without images bootstrap carousel slider without images Reviewed by Bhaumik Patel on 8:41 PM Rating: 5

Cool And Simple CSS Button Design

Bhaumik Patel 7:36 PM
Pure Flat CSS Button Design DEMO .btn{display:inline-block;padding:6px 12px;border:2px solid #ddd;color:#ddd;text-decoration:none;font...Read More
Cool And Simple CSS Button Design Cool And Simple CSS Button Design Reviewed by Bhaumik Patel on 7:36 PM Rating: 5

iFrame with Fixed Header

Bhaumik Patel 8:22 PM
iFrame with Fixed Header #headerfix { height: 60px; background-color:#DDD; background: url(http://placehold.it/1128x70&...Read More
iFrame with Fixed Header iFrame with Fixed Header Reviewed by Bhaumik Patel on 8:22 PM Rating: 5
jquery autocomplete with subtitles jquery autocomplete with subtitles Reviewed by Bhaumik Patel on 8:18 PM Rating: 5
Validate image size before the image change Validate image size before the image change Reviewed by Bhaumik Patel on 8:14 PM Rating: 5

jquery toggleClass With Condition

Bhaumik Patel 8:10 PM
Toggle class using jquery if else statement $('input[type=radio][name=RadioGroup1]').change(function () { $('.test...Read More
jquery toggleClass With Condition jquery toggleClass With Condition Reviewed by Bhaumik Patel on 8:10 PM Rating: 5
Bootstrap Group Button Social Sharing Bootstrap Group Button Social Sharing Reviewed by Bhaumik Patel on 8:22 PM Rating: 5

Abs similar to jquery

Bhaumik Patel 8:10 AM
Get the absolute value of a number in Javascript Return the absolute value of a number: Math.abs(-90.83); // Output 90.83 More Examp...Read More
Abs similar to jquery Abs similar to jquery Reviewed by Bhaumik Patel on 8:10 AM Rating: 5