Latest posts on tagged on "JQuery"

jQuery(…).timeago is not a function

22 October 2016

I got the following error while I needed to show the relative time to post using jQuery timeago js. In my case it is due to multiple JQuery registered on the page.

TextArea value count in jQuery- character limit indicator

20 October 2016

In this article, I will show you textarea value character count in jQuery. When user type characters in textarea it will indicate the character limit below that using the jQuery keyup event.

How to check length in jQuery for textarea?

19 October 2016

In this article, I will show you textarea character count in jQuery. The easiest way to get character counter is $(“#your_textarea”). val().length in jQuery.

How to use date plugin jQuery timeago example?

16 October 2016

In this example, I will show you how to implement timeago jQuery plugin in a asp.net MVC project. It makes easy automatically updating datetime like 5 minutes or 15 hours ago or 1 day ago etc…

How to redirect in mvc using jQuery?

10 October 2016

In this article I will show you how to redirect in mvc using a jQuery script code. When the user clicks the button JQuery event is triggered on that you can assign controller action to location.href.

How to display sum of two textbox values in third textbox automatically?

9 October 2016

In this article, I will show you how to add numbers in html using onkeyup() event in JavaScript. Here, when the user enters the values in the first two textbox values without pressing any buttons it sums the values automatically in the third textbox.

JavaScript function to return last word

9 October 2016

In this article, I will show you how to return last word (string) using JavaScript. The function will receive the textbox value and split using (.split) string functions in jQuery.

How to check blank white space in JQuery example?

9 October 2016

In this article, I will show you to check blank white space using trim in jQuery example. You can check the user input blank white space in a client side click.