Tags
ALM api ASP.NET ASP.NET 4.0 Boas Práticas C# C# 4.0 ClientIDMode code codificando Color Picker css Flickr html Hyper-V JavaScript jCarousel jCrop jQuery JSON migreme MySql Regular Expression Reporting Services 2008 Server 2008 R2 slideshow SQL Team Foundation Server TFS 2010 Validação VisualStudio 2008 VS2010MCPD ASP.NET 3.5
Microsoft Certified Professional Developer ASP.NET 3.5
MCTS ASP.NET 3.5
Microsoft Certified Technology Specialist - .NET Framework 3.5, ASP.NET Applications
MCP ASP.NET 3.5
.NET Framework 3.5, ASP.NET Application Development
-
Últimos
- Série “C#/.NET Five Little Wonders That Make Code Better”
- ASP.NET 4.0, css para controles desabilitados
- Dynamic Memory, Hyper-V 2008 R2
- Instalando o Team Foundation Server 2010, 2ª parte [final]
- ASP.NET 4.0, RadioButtonList e CheckBoxList
- ASP.NET 4.0, CSS de controles de validação
- Novidades do ASP.NET 4.0, ClientIDMode
- C# boas práticas switch
- Dica: SQL Server Sample Databases
- Instalando o Team Foundation Server 2010, 1ª parte
Tag Archives: jQuery
Dica rápida: jQuery Plugin autohelp
Plugin interessante para utilizarmos em formulários como dica de preenchimento. O plugin captura o title do elemento em foco e insere ele como html do elemento que renderizará o texto de ajuda site: http://www.dyve.net/jquery/?autohelp Como utilizar: $(document).ready(function() { $(“form *”).autohelp(“#autohelp”); … Continue reading
Carrossel com jCarousel, jQuery plugin
Ache outros vídeos como este em Codificando .Net Demo: JqueryCarousel Site do plugin:http://sorgalla.com/projects/jcarousel/
Dica: Input numérico com jQuery
Adicione a referência do jQuery, adicione o script e adicone a classe .num ao input que deseja que aceite somente números $(‘.num’).bind(‘keypress’, function(e) { return (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) … Continue reading