Posts Tagged ‘Javascript’

Create Simple Mass Delete Button for ListView using Javascript

In Many situation, I needed a Mass Delete Kind of button. Where, i can select records in ListView and simply click “Delete” button. In this example, we will create a simple List View button and add on “Search Layout” of that object. So, create a new Custom Button with following property: Display Type :  List Button [...]

Handling Colon in Element ID in JQuery – Visualforce problem

Resolving the JQuery error when the Element ID contains colon with Live Demo

Creating JSON Parser Using JQuery

JQuery JSON Tutorial – Creating JSON Parser Using JQuery with Source code and live demo

Servlet, Hibernate, jQuery and Ajax based google like chat

Servlet, Hibernate, jQuery and Ajax based google like chat with source code

JavaScript Error ‘expected identifier, string or number’ in Internet Explorer (IE)

Solution of expected identifier, string or number’ in Internet Explorer (IE) – javascript

Difference between $find and $get Methods

What is Difference between $find() and $get() Methods in ASP.NET

Get Mouse Position in JavaScript for all browsers

  To use above function, just pass the mouse event. Live Demo

Why Style.left does not work in Firefox, chrome and safari ?

During working on one of my project, i found that style.left does not work with Mozilla, chrome and safari but nicely works on internet explorer. The code was : And the simple solution is, append “px” at the end to work with other browsers. and final code is: Very Simple right ?

Highlight Current field using JQuery

Write below HTML code : This will create two text boxes. Using jQuery, we can watch for an event where an input form comes into focus: Add link to JQuery file in script tag as shown in below line: Now, add below CSS in document. Then at last write JQuery / javascript code on focus [...]