In this code:
<div id="tagsdiv-post_tag" class="postbox " >
<div class="inside">
<div class="tagsdiv" id="post_tag">
<div class="jaxtag">
<div class="ajaxtag hide-if-no-js">
<p><input type="text" id="new-tag-post_tag" name="newtag[post_tag]" class="newtag form-input-tip" size="16" autocomplete="off" value="" />
<input type="button" class="button tagadd" value="Add" tabindex="3" /></p>
</div>
</div>
</div>
</div>
</div>
I want auto click on this button :
<input type="button" class="button tagadd" value="Add" tabindex="3" />
I tried with this code :
$(".ajaxtag input.button").click();
but it's not working. Thats code get from Wordpress admin post page.
$(function() { your code here });– Romain Guidoux Jun 11 '11 at 15:29