Questions tagged [ready]

a HTML DOM JS function indicating the document may be manipulated

Commonly used with DOM operations in Javascript or the JQuery extension.

162 questions
0
votes
1 answer

RANDOM PLAY SOUND OVERLAP

Hey all I need your help. I have everything set up and working perfect for my random sound script. The problem is I have it set to when I mouse over a picture it plays a random sound (That's what I want). However, every time I mouse over the picture…
Markess
  • 1
  • 2
0
votes
1 answer

Retrigger my jquery function on ajax load

I have built a plugin that I run on document ready $("#pagecontainer").gumbyPageTransition(); I have a JQuery plugin binding all href with the class pageref to a click event. $("a.pagehref").on('click', function(event){..... The function loads…
user2076941
  • 153
  • 2
  • 11
0
votes
2 answers

ready event on a posted form

I have a form in an iframe, when this form is posted a file is returned to the user (based on the form information). This file is returned using content-disposition:attachment so that only a file save dialog shows up. I want to do something in…
aepheus
  • 7,827
  • 7
  • 36
  • 51
0
votes
3 answers

Jquery .scrollTop() and .scrollLeft() on $(document).ready() not working

I'm having a problem with scrollTop() and scrollLeft() on $(document).ready() I want to to move to centre square on load. I wrote this code, but its not working. Here is my code: …
aleXela
  • 1,270
  • 2
  • 21
  • 34
0
votes
2 answers

jQuery input attribute change from x to y

I try to replace the type of a input through jquery from "date_calendar" to "date". The input's name is "DateOfBirth[0]", but for some reason it doesn't work with the code bellow.. I am new to jquery/javascript and maybe I am missing something.. How…
Adrian M.
  • 7,183
  • 15
  • 46
  • 54
0
votes
1 answer

combining jquery functions ready and live

$(document).ready(function(){ $("a[rel='box']").colorbox(); }); and jQuery('a[href*=#]').live('click',function() { ...etc... total NOOB question: I have these two functions in JQuery... How do I combine them ? a[href*=#] is…
0
votes
1 answer

Implementing Actionlistener in an RTP GUI

So I was trying to create two buttons for an interface, I've tried implementing ActionListener to enable one of the buttons to print a string but it gave me an error which said that "actionlistener wasn't implemented in the class BorderDemo" What…
0
votes
1 answer

Determine when Legend is ready

I am looking to place a text element (or two) below the legend, aligned with it's right side, but I can't get consistent coordinates. Warning: I am a relative noob at SVG. I have a series of datasets that I want to show charts for. As I move from…
astangelo
  • 605
  • 5
  • 18
0
votes
2 answers

In ASP.NET MVC3 how to apply jQuery UI plugins when there are slowly rendered elements delaying the document ready event?

I have a page what contains a long running Ajax request on loading one of its element (a 3rd party grid component). This Ajax request delays the firing of the ready event on the document. I use jQuery UI plugins (button, dilog). I used to apply them…
Zoltán Tamási
  • 12,249
  • 8
  • 65
  • 93
0
votes
1 answer

Alternative to $(document).ready?

Possible Duplicate: jquery callback after all images in dom are loaded? I am using the following script to load a div once the page load is complete: