Home Web Front-end JS Tutorial Solve the conflict between jQuery plug-in tipswindow and hintbox_jquery

Solve the conflict between jQuery plug-in tipswindow and hintbox_jquery

May 16, 2016 pm 06:17 PM
conflict

The usage situation is as follows:

Click the button in page a.aspx to pop up the simulation layer. In this layer, there is an input text box "Supervisor" that calls hintbox to generate an instant query function.

Direct call produces the following situation:

So I found the file jquery.hintbox-1.3.js and found this line:

Copy the code The code is as follows:

$("#windown-content").ajaxStart(function(){
$(this).html("");
});

Change it to:
Copy code The code is as follows:

$("#windown-content").html("");

The reason is that even if the two plug-ins trigger the ajax event under different circumstances, they still use the same object, that is, the
Copy code The code is as follows:
ajaxSetup: function( settings ) {
jQuery.extend ( jQuery.ajaxSettings, settings );
},

ajaxSettings: {
url: location.href,
global: true,
type: "GET",
contentType: "application/x-www-form-urlencoded",
processData: true,
async: true,
/*
timeout: 0,
data: null,
username: null,
password: null,
*/
// Create the request object; Microsoft failed to properly
// implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available
// This function can be overriden by calling jQuery.ajaxSetup
xhr:function(){
return window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
},
accepts: {
xml: "application/xml, text/xml",
html: "text/html",
script: "text/javascript, application/javascript",
json: "application/json, text/javascript",
text: "text/plain",
_default: "*/*"
}
},

In this way, only one xhr object will exist in the current form, because the ajax event in hintbox will trigger the ajaxStart event of tipswindow.

You can download the modified tipswindown,
click to download.
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Guide to uninstalling the NumPy library to avoid conflicts and errors Guide to uninstalling the NumPy library to avoid conflicts and errors Jan 26, 2024 am 10:22 AM

The NumPy library is one of the important libraries in Python for scientific computing and data analysis. However, sometimes we may need to uninstall the NumPy library, perhaps because we need to upgrade the version or resolve conflicts with other libraries. This article will introduce readers to how to correctly uninstall the NumPy library to avoid possible conflicts and errors, and demonstrate the operation process through specific code examples. Before we start uninstalling the NumPy library, we need to make sure that the pip tool is installed, because pip is the package management tool for Python.

How to resolve Win11 wallpaper screen conflict How to resolve Win11 wallpaper screen conflict Jun 29, 2023 pm 01:35 PM

How to solve Win11 wallpaper screen conflict? Recently, some users have experienced a black screen after installing some wallpaper software on their computers. This is most likely caused by wallpaper-screen conflicts. So how should this situation be solved? Let’s take a look at the solution to the problem of wallpaper screen conflict in Windows 11 system. Solution to the problem of wallpaper screen conflict in win11 system 1. Open the window in the settings option of the desktop. 2. Click the Run New Task button under the File menu. 3. Enter explorer.exe in the new task pop-up box, click OK to save and restart the resource manager.

How to resolve hotkey conflicts How to resolve hotkey conflicts Feb 23, 2024 am 08:12 AM

How to Solve Hotkey Conflicts With the advancement of computer technology, we often encounter the problem of hotkey conflicts when using computers. Hot keys refer to realizing a certain operation or function through key combinations or individual function keys on the keyboard. However, different software and systems have different definitions of hotkeys, which leads to the problem of hotkey conflicts. When we press a hotkey, it may trigger unexpected functionality, or nothing may happen at all. In order to solve this problem, I will introduce to you several common hotkey conflict resolution methods below. The first solution

Reasons and solutions for unable to enable win11 input method Reasons and solutions for unable to enable win11 input method Jan 05, 2024 pm 12:22 PM

After updating to win11 system, some users find that their Chinese input method has changed to x and cannot be used. In fact, this is because we are in a position where the input method cannot be used. We only need to enter a place where the input method can be used to solve the problem. Why is the input method disabled in win11: Answer: Because it is in a position where input is not possible. 1. Generally, this situation occurs when viewing the desktop. 2. Because most of the time, we cannot enter text on the desktop. 3. So we only need to come to the place where text can be entered to solve the problem. 4. Various input locations such as QQ, WeChat, documents, notepad, and web pages can solve the problem of disabled input methods.

MySQL MVCC principle revealed: How to deal with read and write conflicts in concurrent transactions? MySQL MVCC principle revealed: How to deal with read and write conflicts in concurrent transactions? Sep 08, 2023 am 08:37 AM

MySQLMVCC principle revealed: How to deal with read and write conflicts in concurrent transactions? Introduction: In database systems, concurrent execution of transactions is essential. However, concurrent execution also brings a series of problems, one of which is read and write conflicts. When multiple transactions read and write the same data at the same time, inconsistencies may occur. To solve this problem, MySQL introduced the multi-version concurrency control (MVCC) mechanism. This article will reveal the principle of MVCC and analyze in detail how MySQL handles the read and write conflicts of concurrent transactions.

Solve the conflict problems that may be caused by using Zepto and jQuery at the same time Solve the conflict problems that may be caused by using Zepto and jQuery at the same time Feb 24, 2024 pm 06:36 PM

How to correctly handle potential conflicts when using Zepto and jQuery? In front-end development, we often encounter situations where we need to use Zepto and jQuery at the same time. However, due to some differences in implementation between the two, potential conflicts sometimes arise. This article will guide you on how to correctly handle conflicts when using Zepto and jQuery, and provide specific code examples. 1. Introducing Zepto and jQuery First, we need to introduce Zepto and jQue into the project at the same time

What to do if there is a driver conflict in win10 latest version 1909 What to do if there is a driver conflict in win10 latest version 1909 Jan 07, 2024 pm 12:45 PM

For the updated win101909 system, some friends discovered that the 1909 driver is incompatible and has driver conflicts during use. The editor thinks that in this case, you can try to update the driver or restore to an older version of the driver to solve the problem. Let’s take a look at how to do it. How to solve the win101909 driver conflict. Method 1. Find the "This PC" icon on the desktop and right-click it. After clicking, a menu will pop up, select "Properties" 2. After opening the window, find and click the "Device Manager" button on the left side of the window 3. Find the graphics card model item under "Display Adapter", right-click, and select Select "Update Driver" from the menu 4. After clicking, select "Automatic Search" in the new pop-up window.

Summary of practical experience in resolving Git code conflicts Summary of practical experience in resolving Git code conflicts Nov 04, 2023 pm 01:54 PM

Summary of practical experience in resolving Git code conflicts Introduction: In team collaboration development, the use of version control systems is an indispensable part. As one of the most popular version control tools currently, Git provides developers with powerful and flexible functions. However, as the size of the team increases and the number of developers increases, the problem of code conflicts becomes more and more common. This article will summarize the causes of code conflicts, common conflict types, and practical experience in resolving conflicts. I hope it can be helpful to the majority of developers. 1. Code conflicts

See all articles