Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6852275
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T01:21:05+00:00 2026-05-27T01:21:05+00:00

I am currently writing my first jQuery plugin and I am struggling to find

  • 0

I am currently writing my first jQuery plugin and I am struggling to find an appropriate way to structure the code. I have read the documentation on the jquery website as well as the source code for other plugins, but can’t seem to find an agreed way of doing it or one that addresses the issue I am having.

The plugin adds some text processing to a text input element to format text as a date.

The example below binds two events to the element. The issue I have is how can I access the element itself from the _processText function. In the example I use $(this), but this gives me the object, not the element so I can’t set the value on it or trigger an event. The only way I have found to do it is to pass the element into the function as a parameter directly in the bind event, but I don’t think that look correct.

Any help greatly received.

(function($) {


    var methods = {
        init : function( options ) {
            return this.each(function() {


                // Process the entered text and convert
                // into a formatted date
                $(this).bind('blur', function(event){
                    methods._processText($(this).val());
                });


                // Custom event to trigger when invalid text
                // is entered
                $(this).bind('invalid', function(event) {
                    alert("Invalid");
                });


            });
        },

        _processText: function(txt) {

            // Sudo code
            if (txt.isValid()) {
                $(this).val(txt)
            } else {
                $(this).trigger("invalid");
            }

        }

    };






    // boilerplate
    $.fn.datefield = function( method ) {
        if ( methods[method] ) {
            return methods[ method ].apply( this, Array.prototype.slice.call( arguments, 1 ));
        } else if ( typeof method === 'object' || ! method ) {
            return methods.init.apply( this, arguments );
        } else {
            $.error( 'Method ' +  method + ' does not exist on jQuery.DateField' );
        }
    };
})(jQuery);
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T01:21:06+00:00Added an answer on May 27, 2026 at 1:21 am

    Use this:

    methods._processText.call(this, $(this).val());
    

    Then inside the _processText method, this will point to the jQuery object.

    Reference: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function/call

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing my first jQuery plugin based on this documentation and I have a
I am currently writing my first Android app and have based most of my
I'm currently writing a billing application using EF 5 Code First, and I'm running
This was my first go at writing some jQuery code completely from scratch, so
I'm currently writing a plugin and have run into and issue that, from searching
I'm writing my first website using php/mysql, and jquery. For the next part, the
I am currently writing my first iPhone app, but have encountered an issue. I
I currently have jquery Cycle running on a page, but not only find it
I am writing my first jQuery plugin. Here's the skeleton of the plugin: (function(
I am currently writing my truly first PHP Application and i would like to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.