Recently I was discussing something with friend about jQuery and question comes from friend that how we can select the all p in Div with jQuery. With jQuery selector its very easy to select all p in div tag. But from this conversation I came to know that lots of people does not know about it. So I thought it will be great idea to write a blog post about it.
As you know with jQuery selectors we can...
Showing posts with label jQuery. Show all posts
Showing posts with label jQuery. Show all posts
Sunday, July 14, 2013
Wednesday, June 26, 2013
Extending jQuery with jQuery.Extend
We all know that jQuery is a great JavaScript framework. It’s provide lots of functionalities and most used framework in programming world. But sometimes we need a functionality that does not provided by jQuery by default. At that time we need to extend jQuery. We can extend jQuery with jQuery.Extend Method. You can get complete information from the following link.
http://api.jquery.com/jQuery.extend/
It...
Sunday, June 2, 2013
How to call ASP.Net page method with jQuery
In this blog post we are going to learn about how we can call asp.net page methods from jQuery.
What is ASP.Net Page Method?
Page methods are available from ASP.Net 2.0. It’s an alternative to web services in ASP.Net application. This methods are exposed at client side and you can call that page...
Sunday, March 10, 2013
How to consume ASP.NET WebAPI from jQuery
Before some months Microsoft has launched WebAPI framework for building and consuming HTTP services. This WebAPI can be called from anything like from mobile sites to JavaScript anything. I thought it will be a good idea to call a WebAPI from jQuery.
In this post I am going to explain how to consume...
Saturday, February 2, 2013
How to hide title bar in jQuery UI modal dialog?
jQuery UI is a great open source set of user controls and it’s very easy to use. Recently one of my friend asked question that how we can hide title bar in jQuery UI Dialog? so this post is a reply to him. Let’s create a simple html and use jQuery Ui modal dialog. Following is a code for that.
Here in the above code you can see I have create a hello world pop up with asp.net jQuery CDN.
<html>
<head>
...
Friday, December 23, 2011
Async file upload with jquery and ASP.NET
Recently before some I was in search of good asynchronous file upload control which can upload file without post back and I have don’t have to write much custom logic about this. So after searching it on internet I have found lots of options but some of the options were not working with ASP.NET and...
Thursday, September 8, 2011
Jquery and ASP.NET- Set and Get Value of Server control
Yesterday one of my reader asked me one question that How can I set or get values from Jquery of server side element for example. So I decided to write blog post for this. This blog post is for all this people who are learning Jquery and don’t know how to set or get value for a server like ASP.NET...
Saturday, January 22, 2011
JQuery UI 1.8.9 new version launch today
JQuery UI contains great controls and it’s very useful when developing sites. Today a new version of Jquery UI is launched.You can find more details about that from following link.http://blog.jqueryui.com/2011/01/jquery-ui-1-8-9/It’s contains Bug fixes for Datepicker, Tabs and other things and also...
Sunday, August 29, 2010
Calling an asp.net web service from jQuery
As I have post it in earlier post that jQuery is one of most popular JavaScript library in the world amongst web developers Lets take a example calling ASP.NET web service with jQuery . You will see at the end of the example that how easy it is to call a web service from the jQuery.
Let’s create a...
Friday, August 27, 2010
jQuery- JavaScript Library Write less do more
This is introductory post jQuery an open source JavaScript library. I know what you guys thinking and I also know that jQuery does not required introduction. It is so much popular and most of web developers whether they are developing using asp.net,php,Jsp or any language on web they are using jQuery...