iAwaaz-News-by-People - Stories tagged with Javascript
1
Awaaz

Shrinking Your JavaScript Files for Improved Page Performance - Rey Bango

posted by RaviRavi 80 days, 16 hours, 12 minutes ago
Friday, June 18, 2010 3:59:39 AM GMT
With all of the performance advances in JavaScript engines in modern browsers, it?s easy to forget that we still need to do some legwork ourselves, especially considering how many users are still on older browsers. Compressing JavaScript files is an oft forgotten task which could have a dramatic (more)
category: Technology | clicked: 0 | comment | | source: blog.reybango.com
tags: Javascript, jQuery, YUI
1
Awaaz

jQuery Templates and Data Linking (and Microsoft contributing to jQuery) - ScottGu's Blog

published 117 days, 16 hours, 35 minutes ago posted by nancynancy 121 days, 2 hours, 23 minutes ago
Wednesday, May 12, 2010 3:36:09 AM GMT Saturday, May 08, 2010 5:48:28 PM GMT
The jQuery library has a passionate community of developers, and it is now the most widely used JavaScript library on the web today. Two years ago I announced that Microsoft would begin offering product support for jQuery, and that we?d be including it in new versions of Visual Studio going forward. By default, when you create new ASP.NET Web Forms and ASP.NET MVC projects with VS 2010 you?ll find jQuery automatically added to your project. A few weeks ago during my second keynote at the MIX 2010 confe... (more)
category: Technology | clicked: 1 | comment | | source: weblogs.asp.net
tags: .net, Ajax, ASP.NET, ASP.NET MVC, Javascript, jQuery, Microsoft, ScottGu, Visual Studio, VS2010
2
Awaaz

April 30th Links: ASP.NET, ASP.NET MVC, Visual Studio 2010 - ScottGu's Blog

posted by nancynancy 126 days, 18 hours, 47 minutes ago
Monday, May 03, 2010 1:24:12 AM GMT
Here is the latest in my link-listing series. ASP.NET Data Web Control Enhancements in ASP.NET 4.0: Scott Mitchell has a good article that summarizes some of the nice improvements coming to the ASP.NET 4 data controls. Refreshing an ASP.NET AJAX UpdatePanel with JavaScript: Scott Mitchell has another nice article in his series on using ASP.NET AJAX that demonstrates how to prog... (more)
category: Technology | clicked: 0 | comment | | source: weblogs.asp.net
tags: .net, ASP.NET, ASP.NET 4.0, ASP.NET AJAX, ASP.NET MVC, Javascript, Link Listing, ScottGu, Visual Studio
1
Awaaz

Build your own Bing image search with the Bing API and jQuery

published 122 days, 14 hours, 2 minutes ago posted by attitudeattitude 126 days, 18 hours, 49 minutes ago
Friday, May 07, 2010 6:09:08 AM GMT Monday, May 03, 2010 1:22:17 AM GMT
One of the most popular parts of Bing is its image search with its never-ending scroll feature. In this post I'll show you my own implementation of a Bing-like image search using the Bing API and jQuery. (more)
category: Technology | clicked: 0 | comment | | source: jclaes.blogspot.com
tags: Bing api, Javascript, jQuery
1
Awaaz

Javascript Classes are a Best Practice for Cleaner Javascript

posted by attitudeattitude 141 days, 1 hour, 13 minutes ago
Sunday, April 18, 2010 6:58:01 PM GMT
Javascript classes allow you to create reusable javascript code and cleaner and leaner web sites and web applications. In this post we?ll create a javascript class and describe when and where you should use them. (more)
category: Technology | clicked: 0 | comment | | source: benjii.me
tags: classes, Javascript
1
Awaaz

Using jQuery and OData to Insert a Database Record - Stephen Walther

published 157 days, 10 hours, 5 minutes ago posted by attitudeattitude 157 days, 23 hours, 1 minute ago
Friday, April 02, 2010 10:06:09 AM GMT Thursday, April 01, 2010 9:10:53 PM GMT
n my previous blog entry, I explored two ways of inserting a database record using jQuery. We added a new Movie to the Movie database table by using a generic handler and by using a WCF service. In this blog entry, I want to take a brief look at how you can insert a database record using OData.Introduction to ODataThe Open Data Protocol (OData) was developed by Microsoft to be an open standard for communicating data across the Internet. Because the protocol is compatible with standards such as REST and J... (more)
category: Technology | clicked: 0 | comment | | source: stephenwalther.com
tags: Ajax, ASP.NET, Javascript, jQuery
2
Awaaz

Using jQuery to Insert a New Database Record - Stephen Walther

published 158 days, 1 hour ago posted by attitudeattitude 162 days, 15 hours, 5 minutes ago
Thursday, April 01, 2010 7:11:28 PM GMT Sunday, March 28, 2010 5:06:16 AM GMT
How do you feel about using plain old .asmx Web services for this (as opposed to WCF?)Gets the job done, and a lot less hassle/configuration required. Plus, the JavaScriptSerializer seems to operate in a more (more)
category: Technology | clicked: 0 | comment | | source: stephenwalther.com
tags: Ajax, ASP.NET, Javascript, jQuery
1
Awaaz

Invoking Javascript From a WebBrowser Control - Gil Fink on .Net

posted by nancynancy 164 days, 17 hours ago
Friday, March 26, 2010 3:11:29 AM GMT
Today I got a request to use a WebForms application inside a WinForms application. One problem that we needed to solve was how to make an interaction between the WinForm and the WebForm it uses. The post will show the solution. (more)
category: Technology | clicked: 0 | comment | | source: blogs.microsoft.co.il
tags: Javascript, WebForms, WinForms
1
Awaaz

JavaScript - To Send Email Dynamically from input Textbox value | syntaxhelp.com

posted by nancynancy 164 days, 17 hours, 1 minute ago
Friday, March 26, 2010 3:11:00 AM GMT
SQL ServerASP.NETC#.NETJavaJava ScriptJavaScript - Basic OperationsValidating UserInputJavaScript - Error HandlingJava Script - Get Scrolling on the title of the webPageJava Script - Retrieving the position of an objectJavaScript - Hide status bar messageJavaScript - To Send Email Dynamically from input Textbox valueJavaScript - to get animated status bar as scrolling Javascript - Handling the browser close eventJavascript - Make first letter of a string capitalLINQMSDOSOracleSharePointSliverlightVB.NET... (more)
category: Technology | clicked: 0 | comment | | source: syntaxhelp.com
tags: ASP.NET, Javascript
1
Awaaz

JEF CLAES ON .NET AND LIFE: Bing API 2.0: Consume results as JSON using Javascript

posted by nancynancy 166 days, 18 hours, 33 minutes ago
Wednesday, March 24, 2010 1:38:17 AM GMT
It's pretty easy to consume JSON returned from the Bing API using Javascript. There is one tricky part though. JSONP Browsers don't let you use JSON results from another website due to security restrictions. By dynamically adding a script tag on your page, you can workaround this restriction though. This technique is called JSONP. More information on JSONP can be found on Rick Strahl's blog. jQuery makes using JSONP relatively easy. The getJSON method does all the hardcore scripting for you. All... (more)
category: Technology | clicked: 0 | comment | | source: jclaes.blogspot.com
tags: Bing, Bing api, Javascript, jQuery, web
1
Awaaz

Getting Started and Troubleshooting Tips for dynaTrace AJAX Edition

published 166 days, 16 hours, 13 minutes ago posted by nancynancy 166 days, 18 hours, 35 minutes ago
Wednesday, March 24, 2010 3:58:27 AM GMT Wednesday, March 24, 2010 1:36:31 AM GMT
The FREE dynaTrace AJAX Edition has been out for several months now. Thanks to a great and constantly growing user and community base we keep learning about what the typical performance problems in Web 2.0 applications are. In order to Get Started with the dynaTrace AJAX Edition some users keep asking about some guidance. We also had some that experienced issues in the installation process or while working with the tool. We collect this information on our Troubleshooting Tips page on the dynaTrace AJAX ... (more)
category: Technology | clicked: 0 | comment | | source: blog.dynatrace.com
tags: Internet Explorer, Javascript, Performance, Tool
1
Awaaz

Tracking scroll depth to reveal content engagement in Google Analytics

published 169 days, 13 hours, 46 minutes ago posted by amit_it7amit_it7 169 days, 15 hours, 15 minutes ago
Sunday, March 21, 2010 6:25:28 AM GMT Sunday, March 21, 2010 4:56:56 AM GMT
This article investigates a way to track content engagement on your site. By monitoring how far down the page a visitor to your site travels and then recording the data in Google Analytics you can discover how many of your visitors are reading your content all the way to the end. (more)
category: Technology | clicked: 0 | comment | | source: runtingsproper.blogspot.com
tags: analytics, article, Google Analytics, Javascript, jQuery
1
Awaaz

LINQ for JavaScript: Using and Extending JSLINQ

posted by amit_it7amit_it7 171 days, 14 hours, 35 minutes ago
Friday, March 19, 2010 5:36:19 AM GMT
LINQ makes our lives easier when dealing with .NET collections, so why not apply the same ideas to JavaScript? This post goes over some of the operators in the JSLINQ implementation, and then extends it with some more custom operators. (more)
category: Technology | clicked: 0 | comment | | source: www.gregshackles.com
tags: Javascript, Linq
1
Awaaz

Joe?s Blog

posted by amit_it7amit_it7 174 days, 18 hours, 13 minutes ago
Tuesday, March 16, 2010 1:58:44 AM GMT
For many a developer JavaScript is nothing more than an old, buggy, unstable, and decrypted language from yesteryear. Like a skeptical Nathanael puzzling over Jesus Christ, these developers ask the age decade old question: How can anything good come out of JavaScript? And like a modern-day Philip, a growing number of influential engineers are eagerly proclaiming ?come and see!? Much of JavaScript?s sketchy reputation is no fault of the language at all, but instead can be laid squarely at the feet of bro... (more)
category: Technology | clicked: 0 | comment | | source: blog.joesgoals.com
tags: Javascript, Web Developer
1
Awaaz

QuirksBlog: Three JavaScript articles and one best practice

posted by amit_it7amit_it7 174 days, 18 hours, 13 minutes ago
Tuesday, March 16, 2010 1:58:42 AM GMT
Three JavaScript articles and one best practice It's getting busy on the JavaScript front. For a good overview of what's happening right now you should read the three articles I mention below. They discuss different aspects of the change JavaScript is going through at the moment. As an extra I've thrown in a little trick I've been using quite a lot lately. Changes to JavaScript First of all Brendan Eich, inventor of JavaScript, speaks up. In his JavaScript 1, 2, and in between he discusses possible di... (more)
category: Technology | clicked: 0 | comment | | source: www.quirksmode.org
tags: Javascript, Javascript Articles
1
Awaaz

Carsonified

posted by amit_it7amit_it7 174 days, 18 hours, 13 minutes ago
Tuesday, March 16, 2010 1:58:40 AM GMT
I recently came across a solution on CSS Play for a JavaScript free lightbox that uses invalid markup. So, being a sucker for a challenge, I set myself the task of creating one with valid markup and I eventually succeeded. Here?s one I made earlier. It works in FF, Safari, Chrome, IE6, IE7 and IE8 and this article will explain how? Note: This article assumes you have a basic understanding of (X)HTML and CSS. (more)
category: Technology | clicked: 0 | comment | | source: carsonified.com
tags: Javascript
1
Awaaz

51 Form Element Resources and Tutorials Using CSS And Javascript | Graphic and Web Design Blog -Resources And Tutorials

posted by amit_it7amit_it7 174 days, 18 hours, 13 minutes ago
Tuesday, March 16, 2010 1:58:35 AM GMT
Browse:Home / Tutorials / 51 Form Element Resources and Tutorials Using CSS And Javascript ByDainis Graverison I featured many good looking contact forms some time ago ? 91 Trendy Contact And Web Forms For Creative Inspiration, so you should know how looks good example. Now let?s take a look how to create outstanding and beautifully designed form elements from scratch ourselves. Things can get tricky even if you are experienced designer. It?s hard to attract visitors attention, but this article shoul... (more)
category: Technology | clicked: 0 | comment | | source: www.1stwebdesigner.com
tags: CSS, Javascript
1
Awaaz

Handling ASP.Net Controls in JavaScript

posted by amit_it7amit_it7 174 days, 18 hours, 13 minutes ago
Tuesday, March 16, 2010 1:58:32 AM GMT
JavaScript tricks for ASP.Net developers Every ASP.Net site on the Internet has various user controls and almost every developer have to handle these controls in JavaScript. Most developers face problem finding these ASP.net user controls in JavaScript side. If you have ever wanted to handle ASP.Net controls in JavaScript, this article should help you get started and demystify what seems to be mysterious task. The following listing will be the agenda for this document.Why JavaScript for ASP.net ... (more)
category: Technology | clicked: 0 | comment | | source: technotes.towardsjob.com
tags: ASP.NET Control, Javascript
1
Awaaz

JavaScript Technology

published 174 days, 15 hours, 52 minutes ago posted by amit_it7amit_it7 174 days, 18 hours, 13 minutes ago
Tuesday, March 16, 2010 4:19:15 AM GMT Tuesday, March 16, 2010 1:58:27 AM GMT
Skip to ContentSunJavaSolarisCommunitiesMy SDN AccountJoin SDN (more)
category: Technology | clicked: 0 | comment | | source: developers.sun.com
tags: Javascript, Javascript Technology
1
Awaaz

How To Build Links With JavaScript

published 174 days, 15 hours, 52 minutes ago posted by amit_it7amit_it7 174 days, 18 hours, 13 minutes ago
Tuesday, March 16, 2010 4:19:15 AM GMT Tuesday, March 16, 2010 1:58:25 AM GMT
How To Build Links With JavaScript Writing by Nick Stamoulis on Wednesday, September 23, 2009 Leave a comment JavaScript is an interesting tool. It isn?t crawlable so therefore any links you find in a script will not be crawled back to the source. On the other hand, search engines can detect the inbound links produced from JavaScript. In other words, you can get credit for inbound links that are hidden inside of JavaScript even though the links themselves won?t be crawled by the search engines. Before... (more)
category: Technology | clicked: 0 | comment | | source: www.searchengineoptimizationjournal.com
tags: Javascript
1
Awaaz

You Know You Should Use JavaScript When? | CSS-Tricks

published 174 days, 15 hours, 52 minutes ago posted by amit_it7amit_it7 174 days, 18 hours, 13 minutes ago
Tuesday, March 16, 2010 4:19:15 AM GMT Tuesday, March 16, 2010 1:58:22 AM GMT
You know you should use JavaScript when the task cannot be accomplished with any other technology. That?s what Doug suggested when I asked him for a nicer spin on a something that was going through my head: JavaScript: If it can be done in another language, it should be done in another language. That just sounds so negative, which is definitely not what I?m getting at here. But I am trying to make a point. JavaScript is capable of doing taks that can also be accomplished in other languages. JavaScri... (more)
category: Technology | clicked: 0 | comment | | source: css-tricks.com
tags: Javascript
1
Awaaz

40 Techniques of JavaScript for Professional UI | Tutorial Lounge

published 172 days, 6 hours, 57 minutes ago posted by amit_it7amit_it7 174 days, 18 hours, 13 minutes ago
Thursday, March 18, 2010 1:14:43 PM GMT Tuesday, March 16, 2010 1:58:20 AM GMT
Hello there! If you are new here, you might want to subscribe to the RSS feed for updates on this topic.Powered by WP Greet Box This is specialy for Web Developers and Design because they are using very much JavaScript for make more beautiful our UI (User Interface), JavaScript can add a lot of special effects that can really improve the user?s experience, when we add JavaScript/jQuery techniques that add an extra dose of usability to any UI (User Interface/Webpage), we need to figure out more prac... (more)
category: Technology | clicked: 0 | comment | | source: www.tutoriallounge.com
tags: Javascript
1
Awaaz

JavaScript Class Constructor vs. Object Literal: Difference in Implementation and Inheritance

published 172 days, 6 hours, 57 minutes ago posted by amit_it7amit_it7 174 days, 18 hours, 13 minutes ago
Thursday, March 18, 2010 1:14:43 PM GMT Tuesday, March 16, 2010 1:58:16 AM GMT
JAVASCRIPT CLASS CONSTRUCTOR VS. OBJECT LITERAL: DIFFERENCE IN IMPLEMENTATION AND INHERITANCE There is a difference between object literal and what is called a (more)
category: Technology | clicked: 0 | comment | | source: www.davidpirek.com
tags: Constructor, Javascript
1
Awaaz

Netflix JavaScript code: AJAX library as jquery plugins

published 172 days, 6 hours, 57 minutes ago posted by amit_it7amit_it7 174 days, 18 hours, 13 minutes ago
Thursday, March 18, 2010 1:14:43 PM GMT Tuesday, March 16, 2010 1:58:14 AM GMT
NETFLIX JAVASCRIPT CODE: AJAX LIBRARY AS JQUERY PLUGINS Recently I have been exploring the best approach to write a custom JavaScript framework. We all use JavaScript libraries these days, and some of us have heard about object oriented principles in organizing our javascript code. The dilemma I have have had recently was that I love jQuery's simplicity approach, but how should I marry this with a custom framework, and how much should those two be tied together. In this pursuit, I have actually explored... (more)
category: Technology | clicked: 0 | comment | | source: www.davidpirek.com
tags: Ajax Library, Javascript, jQuery Plugins, Netflix
1
Awaaz

JavaScript class browser: once again with jQuery - Tales from the Evil Empire

published 172 days, 6 hours, 57 minutes ago posted by amit_it7amit_it7 174 days, 18 hours, 13 minutes ago
Thursday, March 18, 2010 1:14:43 PM GMT Tuesday, March 16, 2010 1:58:12 AM GMT
JavaScript class browser: once again with jQuery I?ve already posted twice about that little class browser application. The first iteration was mostly declarative and can be found here: http://weblogs.asp.net/bleroy/archive/2009/09/14/building-a-class-browser-with-microsoft-ajax-4-0-preview-5.aspx The second one was entirely imperative and can be found here: http://weblogs.asp.net/bleroy/archive/2009/10/15/entirely-unobtrusive-and-imperative-templates-with-microsoft-ajax-4-preview-6.aspx Thi... (more)
category: Technology | clicked: 0 | comment | | source: weblogs.asp.net
tags: Ajax, Javascript, jQuery, Microsoft
Previous 1 2 Next