Tagged Questions
1
vote
2answers
69 views
JQuery selectors - using html snippets as “context” in filter and find
A quick question about using context with Jquery selectors:
I'm trying to grab the text from a div element that has id="time". Can a HTML snippet be used as context in the following:
// An AJAX ...
0
votes
0answers
28 views
Load the content from another file and run its javascript/jquery
I am trying to load the content of another HTML file using .load() function of jquery. Where the content is fetched successfully but does not run its script. Could anyone help me to figure out how i ...
0
votes
2answers
81 views
JQuery selector to match a dynamically loaded script tag
I want to match any raw script in an Ajax downloaded document, so I tried
$.ajax({
url: url,
type: "post",
success: function (data, status, xhr) {
var scr = ...
0
votes
1answer
31 views
how to use $.when in jquery with any method as a differed?
I am wondering if I can use $.when with a jquery selector or action as a deferred, like:
$.when(newTemplate.appendTo("#container")).done(function(){
var rand = Math.floor((Math.random()*1000)+1);
...
1
vote
1answer
126 views
jquery form selector not working when form dynamically loads with ajax
I'm banging my head on this for half a day.
I want to prevent submitting a form, so I can use ajax to submit it, but can't get the selectors to work.
My markup is this:
<div class="my_cart">
...
1
vote
1answer
126 views
Set up event handlers with jQuery in ajax response
I have a home.php page that has a button to invoke an ajax call to replace the contents of an element
$(document).ready(function() {
$("#button").click(function() {
...
0
votes
0answers
39 views
How to get pop up using mouseenter in jquery
I need a pop up which diaplays me a textbox of width 3 and an image of decent size when i place my mouse on the select option using jquery.I believe it can be done using mouseenter fucntion but not ...
1
vote
0answers
43 views
Getting two methods invoked .blur() and .click() both at once in jquery
I have one input type element on whick i want to bind blur event, and an anchor on which i want to invoke .click() in jquery. here is an example:
<a href='#' id='apply-to-all' ...
2
votes
1answer
225 views
Load a certain div without refreshing the page in a query
I've seen similar questions asked here many times but this one's a bit different.
I have a post query displays content as;
<div class="block1">
<a class="button" href="#">Button</a>
...
0
votes
6answers
195 views
select elements using display:block
This is the html content from which I want to select all elements inside report having display block using jQuery
$("#report:visible") does not work for me.
<div id="report">
<div ...
1
vote
2answers
95 views
How can I select in Jquery a dynamically created set of div id
My problem is quite simple.
In my php page I generate as many divs as necessary through a "while" statement
Each div has got an ID which changes this way: id='ref".$i"' (Every time the While statement ...
0
votes
2answers
232 views
jQuery Ajax Remove Specific item from Cart
I have a shopping cart. My cart has remove buttons against each item as follows:
....
<tr style="text-size:0.8em">
<td>Music ...
-3
votes
1answer
173 views
slider not working
can you guys tell me why my slider is not working
i have included all the resources in the js fiddle then also its not working
providing fiddle link below
http://jsfiddle.net/YakV7/2/
actual demo
...
-2
votes
3answers
228 views
how to find table head of a td after selecting with jquery [closed]
hi
as you can see in above image,i'm creating a simple calendar to use in my project.
Html for table:
<table>
...
0
votes
1answer
231 views
Twitter Bootstrap dropdown misbehavior
I have two dropdown one have an id and the other have not, and I want to trigger an ajax request and the action to show the dropdown list.
And this is how Im trying to do it, but has some ...
1
vote
1answer
361 views
bxslider carousel code
i am trying to implement the slider from this site
http://bxslider.com/
i used the exact procedure what they said but still my code is not working
can you guys tell me how to fix it
i am providing ...
0
votes
1answer
81 views
add the sum of from the value select of radiobutton
for instance, radiobutton one = value 1, radiobutton two = value 2.
here is the code I have
script file
<script type="text/javascript">
$(document).ready(function () {
...
8
votes
1answer
145 views
disable keyCode for 1st and last element
I have made a onkeydown function which runs li elements blocks horizontally it runs perfectly but i need when the first and last li blocks in focus the left and right keys should get disable.
could ...
0
votes
0answers
105 views
Which one is the best code snippet for closing jQuery Validation Engine .formError divs after an event
Using jQuery Validation Engine plugin by Position Absolute
.. and found this code used repeatedly in some functions and thought to consult which method is more appropriate for closing divs with that ...
0
votes
1answer
30 views
Traversing html element from one view to another
$('#addstflgnlink').live('click', function (e) {
e.preventDefault();
$.ajax({
url: this.href,
type: "get",
success: function (fk) {
$('#stflgn').append(fk);
...
1
vote
1answer
154 views
How to show html files with modal.open using jquery?
Currently i use a fine working code for opening a modal with Jquery :
$(document).ready(function(){
$("span.ico-detail").click(function(){
...
0
votes
2answers
92 views
Am I initiating jQuery.masonry more than once per ajax request?
I have the following script which works, but I don't think it's a nice way of doing it:
success: function( widget_shell )
{
if( widget_shell.d[0] ) {
$( "#container" ).empty();
...
1
vote
0answers
358 views
jQuery take value for input[type =“text”] in jQuery data with defined variable
I have my markup like this. Now here you can see every button has same class named button.
<div class="cart">
<input type="text" name="quantity" size="2" value="12" />
<input ...
0
votes
2answers
147 views
jQuery accordion bug
On page-load accordion should be collapsed...but here on page-load it's expanded and I don't know how to fix this bug?
$(document).ready(function()
{
//Add Inactive Class To All Accordion Headers
...
0
votes
2answers
157 views
jQuery multple button with the same class name is taking only last value
In this below markup you can see the class name is same for every button. I have more number of button with the same class name of button. Now when I am doing click on any button it is taking only the ...
0
votes
0answers
59 views
jquery opacity with another image
I am trying to attain the opacity of my image with book mark and cross image on it how to attain it. Here's a screenshot.
Here is my js code (jsfiddle):
$(document).ready(function(){
...
0
votes
2answers
88 views
jquery hover state after opacity
once i click the button the image opacity changes but still the re button appears on hover
is it possible to remove the red button completely once the opacity of the image changes...
...
1
vote
2answers
112 views
jQuery opacity not working
I am trying to change the opacity of the image after I click the red button
instead of adding the different image, and I should not see the red button on the new image
My JS code is below.
...
-1
votes
1answer
43 views
Carousel jquery not working
Can you guys tell me why carousel code is not working?
http://jsfiddle.net/UjJEJ/4/
Providing my js code here:
$(document).ready(function () {
/* zpass landing carousel */
...
0
votes
4answers
73 views
Calculate total width of child elements in more than one class using jquery
I'm haviing following code
<span class="numbers">
<a href="#">20</a>, <a href="#">50</a>, <a href="#">100</a>
</span>
class "numbers" is ...
1
vote
1answer
42 views
JSON data working in one part of script, but not in another part
I have the following script which is not working for some reason:
success: function( widget_data )
{
if( widget_data.d[0] ) {
var j = 0;
for ( j = 0; j <= ...
1
vote
2answers
154 views
mouseleave not working in jquery
my mouseleave is not working in my jquery code
http://jsfiddle.net/alano/9Dr7T/29/
providing my js code below
mouseleave: function () {
$(this).find("div:last").remove();
}
0
votes
1answer
84 views
jQuery UI - In Sortable, How we can control the element movement to x and y axis(both) only ?
<html>
<body>
<div class='main'>
<div class='sub'>Item 1</div>
<div class='sub'>Item 2</div>
<div class='sub'>Item 3</div>
<div ...
1
vote
1answer
80 views
jquery hover works for only certain divs
i have jquery carousel where i am trying to implement hover for all the divs
but it works for only certain divs can you tell me why its not working for other divs...
when you click green and red ...
-1
votes
2answers
52 views
styling jquery div in css
why I am not able to style this by giving a class
<div class="ko">add image</div>
http://jsfiddle.net/6MmMe/27/
$("div").hover(
function () {
$("<div class="ko">add ...
0
votes
0answers
83 views
carousel hover extra feature
i am having a carousel...
http://jsfiddle.net/9Dr7T/
i wanted this extra feature to be implemented for each img in my carousel on hover..
http://jsfiddle.net/6MmMe/23/
can you guys tell me how to ...
0
votes
4answers
84 views
JavaScript setInterval on several threads
I have a generic dictionary like so:
data holds a dictionary (key, value) pair:
for (var key in data) {
var interval = setInterval(function () {
getProgress(key, data[key], interval) }, 2500); ...
2
votes
1answer
52 views
Looping through JSON data not working as expected
I have the following script which is not behaving the way I am expecting it to behave:
success: function( widget_shell )
{
if( widget_shell.d[0] ) {
for ( i = 0; i <= ...
3
votes
3answers
103 views
add class to a element if the parent element contains an element
i have to add a class to a element(h2) on it's click event if the parent element(class="container") contains an element(class="sub-cat") inside it. fiddle link
$('.container h2').click(function(){
...
0
votes
2answers
158 views
Get age of person by subtraction date
Suppose that I have code as below:
$('#dateNaissance').datepicker({
onSelect:function(date){
var today=new Date();
console.log(today.getTime());
console.log(new ...
0
votes
1answer
97 views
getting the response as “servlet temporarily moved ” when trying to send serializable data on ajax call to a servlet
I have the following piece of code to send serializable data on ajax call to servlet
$.ajax({
type: "post",
url: registersubmit.RegisterServlet.json,
dataType: "json",
...
-1
votes
2answers
116 views
How to create multiple change function
I have an html select and a add button. If any one click on add button then an html select create same class, name. My problem is if I change first html select then change function work properly but ...
0
votes
3answers
333 views
Change the Value of Dynamically Loaded Hidden Form Element
I'm having trouble changing a value of a hidden form element that was dynamically loaded via ajax. When a user clicks on a date, I'd like a few hidden input fields to get automatically updated with ...
1
vote
4answers
136 views
Jquery change function don’t work properly
I have same id, name two html select. If I change first html select then it’s work properly but If I change second html select then it’s not work. Please can someone point out what I may be doing ...
1
vote
0answers
1k views
thumbnail image gallery jquery
i am trying to make a thumb gallery.
structure:
one container to display big images
another container which is having 3+ groups each having 3 options of radio button.
on selecting any of the ...
0
votes
2answers
287 views
Jquery multiple load into divs
I am trying to make a page which has 4 configurable sections all of which will provide the user with the same inputs but ultimately be 4 unique configuration settings.
I am using a generic base page ...
0
votes
4answers
82 views
Jquery : Getting the attribute value
I need to get the list of all attributes value of an element by using its id. My code is as follows:
<div id="DivRoles" align="center" style="">
<select id="newOptions" name="UserRole" ...
0
votes
2answers
218 views
Jquery code to get the childnodes selected in HTML markup
Below is the HTML code for a Telerik Tree View Control used in a ASP.NET MVC application. I need to get the value (input tags values are in GUID format) of the ChildNode when a child node checkbox is ...
0
votes
1answer
103 views
how can i get minimize and restore functionality on lightbox ..?
like close button i want minimize functionality over light box so when it is minimized it comes to the bottom of the window showing only title and minimize button converted into restore button so when ...
-1
votes
2answers
144 views
jquery autocomplete list position change
I would like to move position a bit to the left of my Jquery UI suggestion list.
here function and everything work very fine
unfortunately I have no idea how to move that list a bit to left align ...


