javascript

jQuery anonymous and callback function declarations

Jun
26

JavaScript enables you to create anonymous functions to be executed immediately or when the document is ready, and also allows you to freely pass functions around to be executed at a later time. The default short-hand notation for jQuery wrapper is $, and unless your webpage has a conflict with other javascript libraries you may freely use $ to wrap any jQuery scripts. Since there are many variations of anonymous function calls, they are worth mentioning here.

Posted By admin read more

Netsuite Suitelet Examples & Tutorials

Jun
27

NetSuite Suitelets plays vital part in integrating 3rd party web applications with the NetSuite. Writing a suitelet is as easy as writing a simple javascript except that it runs on server-side. Here is a couple of examples on how to write a suitelet. The first example creates a customer of a type LEAD-Unqualified from a POSTed web submissions.

Posted By admin read more

Netsuite Suitelet Developer Resources

Jun
21

1. Join the SuiteCloud Developer Network
To get started with Netsuite development, you'll need a Netsuite account that you can use to communicate with Netsuite. You may sign up with the SuiteCloud Developer Network (SDN) as a Community member, and get a free Netsuite account for exploitation. It may take a day or two to get your account approved.

Posted By admin read more

Netsuite Web Service alternative - Suitelet Tutorial

May
24

Netsuite soap-based web service interface (also known as SuiteTalk) is great for processing batch jobs, but may not be suitable for real-time form processing due to concurrency problem. For real-time processing, the Suitelets may be preferred over SuiteTalk as they don't have concurrent session problems.

Posted By admin read more

Netsuite SuiteScript (Suitelet) vs. SuiteTalk (Web Service)

May
24

Web Service Concurrency Problem

Posted By admin read more

Syntax Highlighter Usage (SYNTAXHIGHLIGHTER-OPTIONS)

Mar
04

I have been searching for Syntax Highlighter plug-in for Wordpress and Drupal, and decided to install the one available from Alex Gorbatchev. The module makes use of the Syntax Highlighter Javascript Library, and does the job I wanted. In order for Syntax Highlighter plug-in to work, you'll have to install both Javascript library and the module developed for Durpal or Wordpress. Once the module is installed, the syntax for using it is pretty much the same.

Posted By admin read more

Javascript Overview

Feb
04

What is Javascript?

JavaScript is an object-oriented scripting language designed to be embedded in HTML pages for added interactivity and offer intelligence to web pages. JavaScript provides a set of objects (Array, Date, and Math), language elements (Operators, Conditional Controls, and Statements). Javascript is primarily used in client-side to control the browser elements and HTML Document Object Model (DOM) to offer interactivity to users.

Posted By admin read more
Subscribe to RSS - javascript