Forum Moderators: open
<div class="innercol">
<div id="identifiers">
<strong>Enter identifier and press enter</strong>
<div class="identifier">
<input id="identifier" name="identifier" onkeyup="identifierChanged(event; $('#bulk_asset_dialog form').onsubmit(false);" type="text" value="" />
</div>
</div>
<p class="submit">
<div class="controls">
<input type="submit" value="Add these assets" onclick="$('.loading').show(); $(this).parent().hide();" /> <span>or</span> <a href="#" class="cancel_link" onclick="swapTo('bulk_asset_dialog');">
Cancel
</a>
</div>
<div class="loading" style="display: none;">
<img alt="Loading..." src="/checkoutdesk/Content/images/progress_bar.gif" />
</div>
</p>
</div>
The error references the 4th line in the code i have above...does anybody have any ideas what could be throwing this?
identifierChanged(event; $('#bulk_asset_dialog form').onsubmit(false);
Do you see an equal number of ( and ) ? :-) Nope.
When you get these look at it like this:
identifierChanged(); // OK
identifierChanged(event;); // OK, I think, does ; need to be ,?
identifierChanged(event; $('#bulk_asset_dialog form').onsubmit(false)); // Ah, there it is, last one . . .