DCSIMG
Javascript,jQuery - Gil Fink's Blog

Gil Fink's Blog

Fink about IT

News

Microsoft MVP

My Facebook Profile My Twitter Profile My Linkedin Profile

Locations of visitors to this page

Creative Commons License

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.
© Copyright 2013 Gil Fink

Hebrew Articles

Index Pages

My OSS Projects

English Articles

Browse by Tags

All Tags » Javascript » jQuery (RSS)
Avoiding Circular Reference for Entity in JSON Serialization
Avoiding Circular Reference for Entity in JSON Serialization One problem that I was facing yesterday while working on an ASP.NET MVC application was a JSON serialization issue. The problem was a circular reference caused by the DataContractJsonSerializer because of relations between the entity and other entities. In this post I’ll show you how you can use a simple workaround in order to avoid the problem.    The JSON Serialization Error Returning the output of the JSON method in an...
Profiling JavaScript 101 Using IE9 Developer Tools
Profiling JavaScript 101 Using IE9 Developer Tools Lately I’m involved in a very interesting project which suffer from JavaScript performance issues in old browsers. The main “pain” in the project is the need to support IE8 which is used by many of the client’s users. I’ve got a call to come and help in the process of tuning the application and decided to share some tips of how I profiled the application and found some of the bottlenecks in the application JavaScript execution. Those bottlenecks...
HTML5 Web Notifications
HTML5 Web Notifications Ever wanted to notify your site clients/users while they are surfing in your site? notifications like “Mail message arrived”, “Printer out of paper” are available through smart clients for decades but in web applications they are not so easy to implement. In the past you could have implemented a blinking behavior that will make the icon of the browser blink or you could add a popup which will annoy your users. There are ways to implement this behavior in a browser specific...
HTML5 – Selectors API Level 1
HTML5 – Selectors API Level 1 Lately, I’m dealing a lot with HTML5. I co-authored a three days course in that topic for Sela , the company I work for. During the process of creating the course I got to learn a lot about HTML5 and what to expect from the new specifications so expect more posts about this subject in the near future. In this post I’m going to describe what is the JavaScript Selectors API Level 1 and compare it with jQuery. Selectors API The Selectors API enables web developers to select...
jQuery Alert Dialogs Plug-in
jQuery Alert Dialogs Plug-in When you want to alert the user in the client side of a web application probably you are embarrassed (or you don’t give a damn) when you use Javascript built-in alerts. I know I do. Javascript built-in alerts are very ugly IMHO and therefore I try to use alternatives instead. In this post I’ll show a very useful alternative that I’ve been using lately in more then one project – the jQuery Alert Dialogs plug-in. jQuery Alert Dialogs Plug-in One of the benefits of using...
Calling a WCF Data Service From jQuery
Calling a WCF Data Service From jQuery I’m working on a lecture about OData which I’ll will present next month (stay tuned for more details in the near future). One of the things that I want to show is how easy and simple it is to consume a WCF Data Service ( OData feed) with the jQuery library. In the post I’ll show you exactly how to do that. jQuery’s getJSON Method When you want to load JSON data from the server using a GET HTTP request in jQuery you will probably use the getJSON method. That...