Streams
﹟Append
Appends the content within the template tag to the container designated by the target dom id.
<turbo-stream action="append" target="dom_id">
<template>
Content to append to container designated with the dom_id.
</template>
</turbo-stream>
﹟Prepend
Prepends the content within the template tag to the container designated by the target dom id.
<turbo-stream action="prepend" target="dom_id">
<template>
Content to prepend to container designated with the dom_id.
</template>
</turbo-stream>
﹟Replace
Replaces the element designated by the target dom id.
<turbo-stream action="replace" target="dom_id">
<template>
Content to replace the element designated with the dom_id.
</template>
</turbo-stream>
﹟Remove
Removes the element designated by the target dom id.
<turbo-stream action="remove" target="dom_id">
</turbo-stream>