2
votes
4answers
51 views
Can I call jquery click() to follow an <a> link if I haven’t bound an event handler to it with bind or click already?
I have a timer in my javascript which needs to emulate clicking a link to go to another page once the time elapses. To do this I'm using jquery's click() function. I have used $(). …
1
vote
3answers
50 views
Are these JQuery calls the same?
Hi guys,
Could someone tell me if this:
$.ajax({
url: 'test.html',
success: function(data) {
alert("Data Loaded: " + data);
}
});
is …
0
votes
4answers
50 views
JQuery: Code is malfunctioning
Hi! I'm trying to reuse parts of some JQuery code I've used before for another website, but for some reason, this use of it is causing the whole page to be blank. When I comment th …
0
votes
3answers
46 views
open external url in div
i want to load contents of external url like (http://www.google.com) into div,
i the way which will readable by search engine crawl.
in any one of (jquery / ajax / php )
Thanks …
0
votes
2answers
39 views
Ajax content in a loop
I'm trying to load some ajax content into a table, unfortunately it's only loading the last row multiple times instead of loading each new rows.
This is the code I'm using:
funct …
1
vote
4answers
37 views
how to retain the div contents after page refresh
I am creating a dynamic div using Jquery and I am trying to cache it so that, I will get it back after the page refresh, please help on how to achieve this,
pasting the code belo …
1
vote
3answers
19 views
JQuery background color animate not working
I want to change the background color of 'exampleDiv' from the original white background to when I call the code below to immediate change the background yellow and then fade back …
0
votes
3answers
21 views
jquery javascript: take action when radio button is selected
I have the following radio buttons, none of which is checked by default.
<input type="radio" name="location" value="0" /> home
<input type="radio" name="location" value= …
0
votes
3answers
32 views
Select content from JQuery ajax return object
As I understand it, the JQuery load() function retrieves a document and can perform the quivelent of:
$('#somecontenttograb').html()
upon it. I would like to know how to do tha …
0
votes
4answers
23 views
jQuery - How to filter rows onclick?
I'm trying to figure out how to filter a table based on the row class when I click a button. I've been looking at various jquery plugins, but none of them seem to do what I need i …
1
vote
2answers
43 views
jQuery selector help ?
How to anchor paragraph in other HTML pages and in the same time highlighted the area where the pointed paragraph is located when click the the button in the current page?
I made …
3
votes
4answers
218 views
jQuery compiled with Google Closure Compiler
Has anyone compiled jQuery against Google's newly-released Closure compiler?
There has been reported huge savings in code size. I'm curious what the benefit is if jQuery was compi …
1
vote
1answer
20 views
jquery animate to a certain position
Lets say I have a 3 column <table> or <div> with widths of 50% 200px and empty
I want to use jQuery to animate a off screen element into view with it's ending locatio …
1
vote
3answers
30 views
jquery easing not working
Below I use the id of a clicked item to tell my function which <div> to animate.
However it never seems to animate....
Basically you click and <img> and it uses the I …
0
votes
3answers
43 views
Get parent of a child element that has a certain class
I have a nested menu like this:
<ul id="menu">
<li>Home
<ul>
<li>New</li>
<li class="selected">Open</li& …
