Fungovanie tejto stránky je z dôvodu údržby dočasne obmedzené. Ak článok nevyrieši váš problém a chcete položiť otázku, napíšte našej komunite podpory na Twitter @FirefoxSupport alebo Reddit /r/firefox.

Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Ďalšie informácie

How to delete cookie using javascript

  • 4 odpovede
  • 16 má tento problém
  • 5 zobrazení
  • Posledná odpoveď od shivshankar.k

more options

Hi All,

I am working UI Automation. We are using javascript injection for automation. One of the features we need is to ability set / unset cookies.

I am able to set cookie using javascript, but I can't delete / unset a cookie. I am using below script to unset cookie.

document.cookie = 'cookie_name=; path=/; domain=.mycompany.com; expires=Thu, 01 Jan 1970 00:00:00 GMT';

If I try to alert document.cookie, it shows empty string. However, I can still see the cookie in browser after the javascript execution is complete.

Can someone suggest what I might be doing wrong?

P.S. I am on FF v17.0.3 esr on RHEL 5.

Thanks, Shiv

Hi All, I am working UI Automation. We are using javascript injection for automation. One of the features we need is to ability set / unset cookies. I am able to set cookie using javascript, but I can't delete / unset a cookie. I am using below script to unset cookie. document.cookie = 'cookie_name=; path=/; domain=.mycompany.com; expires=Thu, 01 Jan 1970 00:00:00 GMT'; If I try to alert document.cookie, it shows empty string. However, I can still see the cookie in browser after the javascript execution is complete. Can someone suggest what I might be doing wrong? P.S. I am on FF v17.0.3 esr on RHEL 5. Thanks, Shiv

Všetky odpovede (4)

more options

Hey Shiv- This forum is for issues with the browser. However, I was able to find this article on MDN, which may help you:

https://developer.mozilla.org/en-US/docs/Web/API/document.cookie

Good luck!

more options

Thanks rbillings for responding. My code does exactly what is mentioned in that link, but no luck.

You mentioned that this forum is for issues related to browser. Is my question not in that category ? If not, can you please help me point to correct forum ? Thanks for bearing with newbie questions :)

Many Thanks, Shiv

more options

Hi Shiv- Your question involves the browser, but is more about UI automation & javascript. It requires help with code, and this forum is designed to help with UI, not code. I would recommend using sites that help with code [such as stackoverflow] to get more feedback about your specific issue. Sorry there isn't a forum for automation [and we're always glad to hear from newbies!]

more options

Got you, thanks so much :)