Move After

move_after(<anchor>, <item>)

Move the element with the id given by item just after the element with the id given by anchor

move_after("#item_to_move_after", "#item_to_move")

See this action in action!

ruleset a60x105 {
  meta {
    name "Move After Example"
    author "Mike Grace"
    description <<
      Move after example for documentation
    >>
    logging on
  }
  dispatch {
    domain "docs.kynetx.com"
  }
  rule newrule is active {
    select using "http://docs.kynetx.com/krl/kynetx-rule-language-documentation/actions/move-after/" setting ()
    move_after("#footer", "#header_bar_top");
  }
}