How can you programatically disable the grid from highlighting a row when you hover over it with your mouse? Looking to do disable this only at certain times.
This is the code from Oleg which worked:
$('#result-close').click(function() {
//Turn off hover highlighting
$("#list").unbind('mouseover');
$("#list").u...
Hi. I've been reading about using ExternalInterface to have Flash communicate with JavaScript. I need to detect and call some code in JavaScript when the user starts playing the video and when the video ends. The swfobject is nifty for embedding a player on the page, but I can't figure out how to add these event handlers to it. Here's my...
I am wondering how I can include the drag functionality from the jquery UI library in a separate plugin I am modifying. I want to make a div draggable, but don't want to have to write my own method.
...
how to send jqGrid data in json format to server? DO I have to use any external library or script to achieve that?
Thanks!
update1: extra licensePlateNumber should not be there
[
{
"licensePlateNumber": ""
},
{
"licensePlateNumber": "0000000000000029000721804",
"sku": "795127",
"description"...
I have been trying to learn how to write faster more efficient jQuery and would like to get some insight on how I should write this function so it will work faster. Should i use variables, I am most concerned with speed on a page so what will run more optimal cross browser and why is the answer I would like to see.
$("#div-one, #d...
I have 2 buttons in HTML form. And both of them should submit the form. I would need to capture which button has been clicked so i can use it to perform different actions based on which button was clicked.
I am able to submit the form with both the buttons but how would i capture which button was clicked in the php file .
<INPUT type=...
Jquery UI Function:
// Datepicker
$('#datepicker').datepicker({
inline: true
});
Event:
<input name="txtLogistics_ExecutionDate" type="text" id="datepicker" onfocus="datepicker();" />
My question is:
have confusion on how to implement datepicker across multiple text fields.
Do I have to named each text field ID on the function?
H...
the code:
if (!($.browser.msie && $.browser.version.substr(0, 1) == '5')){
$('ul a span', '#menu'.not('{Developers}')).css('color', 'rgb(210,210,210)').hover(
function(){ $(this).animate({color: 'rgb(255,255,255)'}, 500); },
function(){ $(this).animate({color: 'rgb(210,210,210)'}, 200); }
);
}
...
Am trying show a modal on mouse over and close modal on mouse out.
i give class for div and calling it on .hover.
but its like blinking.
open close open close.
why this behavior??
even mouse is inside div its closing .
$('.divclass').hover(function(){
dialog.open()
},
function(){
dialog.close()
});
i use mouse over and mousenet...
Hi guys,
I have a quick question that I need some help with if possible. Am I able to have more than one input with the same id and loop through the values of these? Something similar to the code below:
<p>ID:<input name="check_id" type="hidden" id="check_id" value="1"/></p>
<p>ID:<input name="check_id" type="hidden" id="check...
Is there a good Javascript library for generating an automatically scrolling list like the "Top Tweets" on the Twitter homepage? Preferable as jQuery plugin. It should also support AJAX functionality (to add new list items dynamically).
...
Hey,
I am currently jQuerifying (if there is such a word) my website. I am not good at JavaScript at all, and not great on jQuery. Object orientation is way passed me in JS, but the rest of my site is object oriented VB.net. I noticed, from some experience I had of jQuery a while back, just how difficult it can be when loading pages for...
I would like to use http://caroufredsel.frebsite.nl/ this jquery gallery in my commercial project. It is under MIT licence, I already searched about this licence on net but am still confusing whether we can use this or not... anyone please help me out... thanks in advance
...
I am using jquery ketchup form my forms and i am having problems with the positioning of the error messages. The forms have different styles, so one is more of a
label
input
structure. while another one is on a
label input
structure. this totally messes up my ketchup plugin since it is assuming im using the same styles on both ...
Hi, my problem is that I got 3 submenus in the third nav named "Productos", but they are not showing.
I think maybe the error got something with the jQuery plugin kwicks... making it overflow:hidden;
I'm kinda new so I will appreciate your help ^^
Here is the link to the website
Edit: I remove the kwicks and I can see the submenu b...
I have 2 elements - "span" (named "divLikedX") and "a" (named "aLikeX"). I have the following javascript (occurs clicking by "a"):
function CommentLike(CommentID, aLink) {
if (CommentID != null && CommentID > 0)
$.post("/Home/LikeComment", { CommentID: CommentID },
function () {
//aler...
I have WCF service which communicates with SqlServer, and want to make frontend with JQuery.
The question is: How can i catch WCF errors in JQuery code, such as failed connection or not existing database or some others.
PS. Maybe its better to use something like ASP.NET MVC with JQuery rather than pure JQuery?
...
For a long time I have been throwing around the idea of making my JavaScript more object oriented. I have looked at a few different implementations of this as well but I just cannot decide if it is necessary or not.
What I am trying to answer are the following questions
Is John Resig's simple inheritance structure safe to use for prod...
I have a form with four different fieldsets. For jQuery validation, I would like the errors from the inputs in each of the fieldsets to be placed in an error block at the top of the specific fieldset. For example:
<fieldset id="contact">
<legend>Contact Information</fieldset>
<ul id="errors_contact" class="messages"></ul>
<!-- i...
So I have a very long question for my code. Here are my requirements:
Using jQuery
XML parsing of images
Must be a slide show
Opacity on hover and show text in whiter full opacity
With these piece i built this code.
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/...