Let's say I have this script:

$('.myDiv').click(function(){
     $.getJSON('http://example.com/t.php', {
          department: 'department',
          manufacturer: ''
}

What is the correct syntax to have a parameter's[manufacturer] value be represented by something like this:

<div class="myDiv" rel="brand=myBrand">Hello World</div>

How can the value of the manufacturer parameter be defined by the relationship of the div?

link|improve this question

Better use ID if it only one time. ("#myDiv").attr("rel") pass this eval. w3schools.com/jsref/jsref_eval.asp or else just use replace. To get only brand name. – Naga Harish Movva Jul 28 '11 at 2:58
feedback

1 Answer

up vote 0 down vote accepted

you can do

$('.myDiv').click(function(){
     $.getJSON('http://example.com/t.php', {
          department: 'department',
          manufacturer: $('div.myDiv').attr('rel')
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.