Difference between revisions of "Webeshoppin"

From Wiki2
Line 3: Line 3:
  location.href= 'food2buy.html?repo=' + rep + '&list=' + lis;
  location.href= 'food2buy.html?repo=' + rep + '&list=' + lis;
method2
method2
<pre>
  $('#allyourlists').append('<li><a href="food2buy.html?repo=' + rep + '&list=' + lis + '" data-ajax="false" >Repo: ' + rep + '& List: ' + lis + '</a></li>');
  $('#allyourlists').append('<li><a href="food2buy.html?repo=' + rep + '&list=' + lis + '" data-ajax="false" >Repo: ' + rep + '& List: ' + lis + '</a></li>');
</pre>

Revision as of 10:53, 28 January 2012

to force a move with refresh method1

location.href= 'food2buy.html?repo=' + rep + '&list=' + lis;

method2

 $('#allyourlists').append('<li><a href="food2buy.html?repo=' + rep + '&list=' + lis + '" data-ajax="false" >Repo: ' + rep + '& List: ' + lis + '</a></li>');