Feed on
Posts
Comments

Archive for the 'JavaScript' Category

Lance Fisher has made an update to jQuery for Intellisense in Visual Studio 2008
Click here to read about it and download jQuery with the Intellisense updates.

JavaScript, jQuery

Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • dzone
  • Netscape
  • digg
  • YahooMyWeb
  • Technorati

Top 10 custom JavaScript functions of all time
Top 10 Web Developer Libraries
Top 10 Ajax Applications
Top 10 Ajax Tutorials for Beginners
Top 10 Most Useful JavaScripts
Top 10 JavaScript String Extensions
Top 10 Debugging & testing Javascript
Top 10 JavaScript Books
Top 10 Javascript Tools Everyone Should Have
Top 10 Tips To A Better Form

I found this list on this site

JavaScript, Top […]

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • dzone
  • Netscape
  • digg
  • YahooMyWeb
  • Technorati

This is the list of my top 5:
Core JavaScript ReferenceGecko DOM ReferenceAJAX:Getting StartedHTML4 ReferenceCSS 2.1 Specification

AJAX, CSS, DOM, HTML, JavaScript, Manuals

Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • dzone
  • Netscape
  • digg
  • YahooMyWeb
  • Technorati

This is the list of mine top 10 JavaScript String.prototype extensions. If you want to you can post yours bellow.
This extension adds trim() function:
String.prototype.trim = function(){ return this.replace(/^\s+|\s+$/g,’’); }
//test trimtest = ‘ testing trim ‘;document.write (’"’ + test.trim() + ‘"’);
This extension splits the string by given separator and returns an array with trimmed  items. It […]

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • dzone
  • Netscape
  • digg
  • YahooMyWeb
  • Technorati

To open a page in new window with ASP.NET 2.0 button PostBackURL property you have to set the FROM’s target to "_blank".
Page.Form.Target = "_blank";
Or to use the following JavaScript code:
<script type="text/javascript">    var sFormID = ‘<%=Page.Form.ClientID%>’;    var oForm = document.getElementById(sFormID);    oForm.target = ‘_blank’; </script>
ASP.NET, PostBackURL

Share and Enjoy:
These icons link to social bookmarking sites where readers […]

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • dzone
  • Netscape
  • digg
  • YahooMyWeb
  • Technorati

Using JavaScript to prevent email addresses harvesting by spammers if an effective method against the standard harvesting programs. Nevertheless the spammers could modify their harvesting programs to read the email addresses from the JavaScript. That is why this is not a bulletproof solution but is really effective and could easily be customized for any web […]

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • dzone
  • Netscape
  • digg
  • YahooMyWeb
  • Technorati

The contains(t) function returns true if the string contains the value of the parameter "t" and false if it doesn’t. To extend the String.prototype with the contains(t) function I use this line of code:
String.prototype.contains = function(t) { return this.indexOf(t) >= 0 ? true : false }
This is sample code how to use the contains(t) […]

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • dzone
  • Netscape
  • digg
  • YahooMyWeb
  • Technorati

To extend the String.prototype with the trim() function I use this line of code:
String.prototype.trim = function(){ return this.replace(/^\s+|\s+$/g,’’) }
This is sample code how to use the trim() function:
var sMyVar = new String (" testing trim ");alert(sMyVar.trim()); //use it with the value of a text boxdocument.getElementById("txtMyTextBox").value.trim();
JavaScript, trim

Share and Enjoy:
These icons link to social bookmarking sites where readers […]

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • dzone
  • Netscape
  • digg
  • YahooMyWeb
  • Technorati

"Cross-site scripting (XSS) is a type of computer security vulnerability typically found in web applications which allow malicious web users to inject HTML or client-side script into the web pages viewed by other users. An exploited cross-site scripting vulnerability can be used by attackers to bypass access controls such as the same origin policy. Recently, […]

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • dzone
  • Netscape
  • digg
  • YahooMyWeb
  • Technorati

FireBug is FireFox extension that allows you to select an object on the web page and see its HTML code, styles and everything that you need. It allows you to monitor JavaScript, CSS, HTML and even Ajax.
Here are just a few the capabilities of FireBug:

JavaScript debugger for stepping through code one line at a […]

Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • dzone
  • Netscape
  • digg
  • YahooMyWeb
  • Technorati

- Next »