I am creating a prototype with its event listeners and their respective handlers.
The issue is that I need two 'this' in the same handler:
this._items = $(".playlist-item");
//...
this._items.click( this.itemClickedHandler( ?? ) );
In ot...
I have several JS files that validate fields, it happens that when the condition is fulfilled they make the alert and then it is again fulfilled and it continues that way until you mark "Avoid this page ..."
How do I solve it?
Example get...
I'm making an application in an online system that does not require programming knowledge (just for me) and one of the options you have to create a content is a plugin called Mobile , where you can paste the address of any web page to be displa...
Hi, I have the problem that I do not know how to tell my Jquery dialog to close when I save, I use the jquery edit dialog in the following way.
ondblClickRow: function(rowid){
jQuery(this).jqGrid('editGridRow',rowid);...
the idea is that by clicking on any option of a select depending on this I fill in the fields of my form I am working with php, mysql:
this is my select
<select name="ruta" id="ruta" class="form-control" onchange="showService(this.value)"&g...
I have a page ( parent window ) that opens a pop-up window ( daughter ) with JavaScript , and by clicking a button from the window daughter, it closes, and I need to update a div of the parent window.
I tried with parent.location.r...
What happens is that I have a website in which I have a blog in wordpress, and what I want to do is that the most recent entries are displayed on the home page of my site, but I do not know how to do this , I hope you can help me.
Hello, I'm using the library jqplot to perform certain tests, I created a graphic of type scatter and I have divided it into 4 quadrants.
This is the script code
$(document).ready(function() {
var qr...
It's probably wrong to do it this way, but only then did I find datatable functionality.
<div class="panel-body">
<script type="text/javascript">
jQuery(document).ready(function($)
{
$("#example-1")....
I am creating canvas dynamically with input, for this example I put 2 canvas with the same id. What I am trying to do is that when I draw the canvas with the button, the drawing will be generated. in the same way if by pressing the second button...