Tagged Questions
jQuery is a cross-browser JavaScript library that facilitates DOM traversal, event handling, animation and AJAX interactions.
0
votes
0answers
20 views
JQuery .Ready after my function
i have some trouble with my jquery code, so please can you tell me where is my fault.The name of my DB is "contacts and of the view is "byname"
//on declare une variable "db" pour acceder à la ...
0
votes
0answers
10 views
Avi html5 or jquery player?
I have been looking all over the web googling but i can't find a single video player player for html5 or jquery to play .avis. I am open for any suggestions in how to solve this problem.
1
vote
3answers
26 views
JQuery: Object value
Let a = {a: 1, b:2}, whichs shows in console Object {a: 1, b: 2}.
When I do a.a I get 1.
When I do a[a] I get undefined.
Is it normal ?
I'm asking this because I need to get values from dynamic ...
1
vote
3answers
55 views
Replace “img” in jquery
I am writing a "plugin" where I can replace news data on my homesite without reloading it.
I click the news I want and it will load in a bigger area of the page.
Everything works except the picture. ...
0
votes
0answers
8 views
jquery msgbox doesnt work in update panel
onclientclick doesnt work.I want to delete rocord after confirm in gridview but When I click on the button immediately deletes record and after show confirm. if i use normal return confirm it is works ...
0
votes
1answer
10 views
appending a script to head on both window.width and window.resize
what i need is to append a script if window.width >= 768, else, append another one if window.width is <768.
here is my initial script, which actually works:
function appendScript(stickname){
...
0
votes
2answers
15 views
jQuery validator addMethod always returning false
I am fairly new to jQuery validation http://validation.bassistance.de/ and am trying to create a custom event using addMethod. I have coded what appears to look correct but obviously isn't because if ...
0
votes
0answers
2 views
Formats supported by osm player
I would like to know the formats supported by osm player. From the documentation I found that they will support RSS, XML Playlist, and Single File compatible, but didn't mentioned the list of formats ...
0
votes
0answers
6 views
adding restriction to jquery datepicker on Indian holiday list
add restriction on selecting dates as per Indian holiday list also restriction on choosing previous dates from now()
<link href="StyleSheet1.css" rel="stylesheet" type="text/css" />
...
0
votes
5answers
33 views
Query is working but I get this error - Warning: mysql_numrows() expects parameter 1 to be resource, boolean given
I am trying to create a notification message when a new result is added to the database for certain members.
I have 3 documents I am using for this, index.tpl, checkmsg.php and functions.php
In the ...
0
votes
0answers
48 views
jquery delegated event speed seems impractical
I am using .on() to delegate the events from img to the .jqte_editor. but the issue is the the speed with which it is working is almost impracticle.
$(document).ready(function() {
...
0
votes
3answers
33 views
jQuery Enter Key cant work for other forms
I have a problem with my jQuery enter key. For form login the enter key is working goods but for form reset password, the enter key is not working but with click it can.
Not working means: if I press ...
0
votes
0answers
22 views
Cant catch any event when click space between column in table
I have a html table with 3 column, i using event click() on tr tag to change css for a row selected in table.
[Col A][Col B]___[Col C] with __ is space between columns.
My problem is when user ...
-1
votes
0answers
28 views
Ajax response very slow
HTML:
<div id="list">
<span class="image"><a href="brushdetail.php?id="><img width="170" title="" alt="" src="ajaxload.gif" /></a></span>
<span ...
1
vote
2answers
29 views
Making parents path as a variable in jquery
Just wanted to ask a better way to track parent paths in jQuery, currently I do this.
$('.qBox em a').hover(
function(){
$(this).parent().parent().find('.overlayIMG').fadeIn(100);
},
...