Guest User

Untitled

a guest
May 27th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. function setChange(state,id) {
  2. $('iconchange_'+id).style.display = (state)?'block':'none';
  3. }
  4.  
  5.  
  6.  
  7. function addPos() {
  8. new Ajax.Request('edit_anfrage_pos.cfm?action=new&addressid=<cfoutput>#url.addressID#</cfoutput>', {
  9. method: 'get',
  10. onSuccess: function(transport) {
  11. $('container').innerHTML += transport.responseText;
  12. }
  13. });
  14. }
  15.  
  16. function deletePos(uid){
  17. new Ajax.Request('edit_anfrage_pos.cfm?action=delete&id='+uid, {
  18. method: 'get',
  19. onSuccess: function(transport) {
  20. $('container').removeChild($('box_'+uid));
  21. }
  22. });
  23. }
Add Comment
Please, Sign In to add comment