Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.

hidden input?


ghost's Avatar
0 0

allright i'm looking at the souce of a page and i find this:


<input type="hidden" name="data-submitted" value="true">
<input type="hidden" name="course_assessment_id" value="_1389_1">
<input type="hidden" name="course_id" value="_61329_1">
<input type="hidden" name="content_id" value="_71674_1">
<input type="hidden" name="step" value="null">
<input type="hidden" name="original_user_id" value="_75669_1">









<table cellpadding="0" cellspacing="0">```

how do i change 
```markup
<input type="hidden" name="data-submitted" value="true">```

to make the value false?
It's an input isn't it? so why can't I input what I want.

ghost's Avatar
0 0

try

markup<input type='text'

that should work


ghost's Avatar
0 0

or use Jscripts

javascript:alert(document.forms[0].data-submitted.value="false";

ghost's Avatar
0 0

I'm not the owner of the site and thus can't just go and change the code.


ghost's Avatar
0 0

you dont have to be the owner. Put the javascript into the URL box


ghost's Avatar
0 0

wow ya i feel like an idiot.

but now i got this


<input type="hidden" name="data-submitted" value="true">
<input type="hidden" name="course_assessment_id" value="_1389_1">
<input type="hidden" name="course_id" value="_61329_1">
<input type="hidden" name="content_id" value="_71674_1">
<input type="hidden" name="step" value="null|javascript:alert(document.forms[0].data-submitted.value="false";">
<input type="hidden" name="original_user_id" value="_75669_1">









<table cellpadding="0" cellspacing="0">```

looks to me like it just got stuck on with a bar on the "step" input

ghost's Avatar
0 0

maybe I'm missing something, but could you just change the source of the page? With the webeditor toolbar extension for Firefox, you can just go in and change the HTML right thereā€¦or is that not what you wanted?


ghost's Avatar
0 0

yeah. or use opera. when you view source on it you can reload from cache and edit the source directly without having to add things like the full URL before links/pics/ other things


ghost's Avatar
0 0

Or you could download Live HTTP Headers for FireFox and edit the value sent via POST manually.


ghost's Avatar
0 0

Yer, Use WebDeveloper's toolbar and Forms->Display form details


ghost's Avatar
0 0

allright that worked beautifuly thanks alot guys!