Hello all and sorry if its a stupid question
But there is something I don't understand and would be very happy if a more experienced developer would point out this
I'm developing a real-estate site.
So when they want to add their house or flat to the site i made different categories
like
- House
- Flat
- Office
etc...
These are anchors in a list. By clicking on the different anchors, different forms show up:
What I don't understand at the first time i wrote my code like this.
.form {
display: none;
}
$('.chose').bind('click', function(e) {
e.preventDefault();
var id = $(this).attr('id');
$('.form').hide();
$('#' + id).show();
});
<li><a href='#' class='chose' id='house'>House</a></li>
<li><a href='#' class='chose' id='flat'>Flat</a></li>
<form class='form' id='house'>
this is for the house
</form>
<form class='form' id='flat'>
this is for the flat
</form>
didn't worked, it only returned me [object OBJECT] as a value
but i rewrote the code like this
.form {
display: none;
}
$('.chose').bind('click', function(e) {
e.preventDefault();
var id = $(this).html;
$('.form').hide();
$('#' + id).show();
});
<li><a href='#' class='chose' id='house'>House</a></li>
<li><a href='#' class='chose' id='flat'>Flat</a></li>
<form class='form' id='House'>
this is for the house
</form>
<form class='form' id='Flat'>
this is for the flat
</form>
It works like a charm.
first sorry I'm a beginner. so someone could point out whats the difference?
.html()of theameant you targeted the<form>s properly in the second example. :) hth – WillemLabu Sep 29 '11 at 10:35