Hi all,
I am trying to load content from another file in several divs on one
page.
If i use this script:
var ct=0;
$(".container").each(function () {
var id=this.id;
$("[id="+id+"]").append("d");//alert('r');
$("#pic"+ct).hide()
.load("ajax_getimage.php?url="+id);
$("#pic
Hi, your thoughts are right.
You might look at this plugin, it 'utilizes the power of jQuery
selectors by binding events or firing callbacks for matched elements
auto-magically, even after the page has been loaded and the DOM
updated.'
http://blog.brandonaaron.net/2007/08/19/new-plugin-live-query
d for every checkbox. So give them a dynamic id,
with a separator fi: 'go|1'
Give the tablerow also a dynamic id, it must be the same number as
appears in your checkbox id.
Then in the script, get the id from the checkbox, split it, take the
number and use it as id for the tablerow to animate.
I hope this might help...
Polskaya
I don't know why you have this error. This works fine for me:
In the header of my index-page:
in the jscript.js:
$(document).ready(function(){
//--jquery code goes here
});
On Nov 26, 5:22 am, Stephen <[EMAIL PROTECTED]> wrote:
> Hi,
> I have read a few tutorial docs, and they all state th
Hi,
you might want to take a look at jQuery's slideUp and slideDown efect:
http://www.codylindley.com/blogstuff/js/jquery/#
Example two might get you running...
Success :)
On Nov 19, 8:47 am, "Armand Datema" <[EMAIL PROTECTED]> wrote:
> Hi
>
> I have to redesign a site to a new cms and Im runn
This is a nice plugin to handle checkboxes, I think:
http://www.texotela.co.uk/code/jquery/checkboxes/
oops, sorry for the double post.
On Oct 30, 7:36 pm, polskaya <[EMAIL PROTECTED]> wrote:
> $('.comp').click(function(){
> alert($('.comp').val());
>
> });
>
> On Oct 30, 2:31 pm, Snooze <[EMAIL PROTECTED]> wrote:
>
> > I have a radio
try this:
$('.comp').click(function(){
alert($('.comp').val());
});
it alerts 'equal'.
On Oct 30, 2:31 pm, Snooze <[EMAIL PROTECTED]> wrote:
> I have a radio button defined as:
>
>
> And the following jQuery code:
> $('.comp').click(function(){
> alert(reqsearch.compare.value);
>
> });
>
> T
$('.comp').click(function(){
alert($('.comp').val());
});
On Oct 30, 2:31 pm, Snooze <[EMAIL PROTECTED]> wrote:
> I have a radio button defined as:
>
>
> And the following jQuery code:
> $('.comp').click(function(){
> alert(reqsearch.compare.value);
>
> });
>
> There value it returns is undefine
9 matches
Mail list logo