Top Solutions

How to create a help icon using fadeToggle in jQuery?

In this article we will discuss how to create a help icon using fadeToggle in jQuery. We will set help text to display none. When the user click on the help icon we will implement fadeToggle() propery to make showing or hiding by setting helptext display property to block or none .

How to create an unordered list by iterating an array?

We are creating an unordered list using jQuery by iterating in an array and store it in a local variable by appending. Finally we have pushed in to the DOM using html property. This is the best way to fill the unordered list with element id without reflow.

How to share twitter post using asp.net MVC c#?

The sample code in this article demonstrates share twitter post programmatically. To create a twitter application using Twitter apps and get a customer key (API Key) and customer secret (API key). Inorder to share twitter post we need to Install-Package TweetSharp using nuget package manager console and reference to the page.

How to pass javascript object to a c# controller in asp.net MVC?

In this article we will discuss to pass multiple parameters from Ajax post call in asp.net MVC application. Before I have faced issues with jQuery ajax post call to a controller with multiple parameter due to syntax errors. Now I have found a way by passing JSON stringifyed Object to a [HttpPost] method.