-
In continuation of my previous post on search implementation using knockoutjs . In previous example I bind grid with knockoutjs observable array object. Because of observable characteristics, once view model update then knockoutjs engine render html controls which are bound to that view model. I found...
-
Here I am trying to explain steps for how to use knockoutjs viewmodel, jquery ajax request in asp.net mvc3 project. I am taking practical example to show behaviour. This example will have simple UI screen with search textbox and button. When click on search button ajax request will go to server...
-
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...
-
If you put jQuery in your CV, then beware, you should be able to answer following questions. Better you read on, and test yourself how much you can score. 1. What is jQuery & its significance? Why it is so popular? 2. What is jQuery UI? 3. What are various jQuery Features? 4. What do Dollar ($) sign...
Posted to
Hima's blog
by
Hima
on
10-01-2011
Filed under:
Filed under: BRH, sorting, Clientside Sorting, jQuery, jQu, jquery interview questions., jquery faq, jquery animations, jquery interview questions, jqueryfaq, jqueryui, JQuery Ui, jquery features, jQueryinterview questions, jq, basic interview questions on jquery, why use jquery, advantages jquery
-
XRegExp is an open source JavaScript library that provides an augmented, extensible, cross-browser implementation of regular expressions, including support for additional syntax, flags, and methods. It’s used by the popular SyntaxHighlighter script , which is in turn used by many websites (including...
-
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 Textbox...
-
Use case: To upload the file from client system and save the file in Server using File Stream Implementation: This can be done at the client side by using jQuery with the help of uploadify.js plugin 1. Designing the Page Drag and drop Fileupload control, hidden Field, also...
-
The text() method as the name suggests, returns string that contains the text contents of all matched elements. This method can be applied for both HTML and XML documents. Note : text() cannot be used for input elements. For input field text , we need to use the val() method. It is also used to Set the...
-
Today we will make a cascading dropdown application of Country, State and City in JQuery N.B.~ We are using JQuery 1.6.1 Let us first make the entities.We will have 3 entities here viz, Country, State and City Country Entity(Country.cs) /// <summary> /// Summary description for Country /// <...
-
I am learning JQuery and today I did a small program with JQuery Ajax I am using JQuery 1.6.1 The application is very simple. It has a TextBox, a Button and a Label control. Once the user enters something in the textbox control and click on the Button control, then the request will go to the server and...
-
If we are referring any other script files along with jQuery you may get conflicts in the namespace. Some times if we use jQuery with any other libraries, we may get clash between two libraries and we encounter situations like neither of the functionality works. Important thing to keep in mind is , when...
-
I have been working with JQuery since the last few days and found it to be very handy.So I thought of sharing the stuffs that I am learing/implementing everyday in the project In this article we will look into how to work with Radio Buttons and JQuery N.B.~ We are using JQuery1.6.1 version Input o Standard...
-
How to get All I tags inside an element with id ‘header’ ? Now we understood what is ID selector, class selector and to select elements, putting all together we will try to answer the above question For ex: $('#header >I') - Gets get All I tags inside an element with id ‘header’ . ID Selector...
-
jQuery can be used to select HTML elements using element selector. Below are some of the examples of how to use selectors. $(<’element>’) - Selects all elements with the given tag name. $(‘p’) – Selects all Paragraph Elements $(‘a’) – Selects all Anchor tags in side a web page...
-
A Selector identifies an HTML element tag that is used to manipulate with jQuery code. Selectors allow page elements to be selected. $ is the symbol used for it. $ can also be called as jQuery selector. Selectors are the most important part of the jQuery , we can say that heart of jQuery. We can select...