Questions tagged [inline-scripting]
40 questions
1
vote
2 answers
add an item to arraylist in powershell workflow foreach -parallel
How can we add an item to an arraylist while using foreach -parallel loop in powershell workflows?
workflow foreachpsptest {
param([string[]]$list)
$newList = [System.Collections.ArrayList]@()
foreach –parallel ($item in $list){
$num =…

cansin aldanmaz
- 119
- 1
- 5
- 10
1
vote
1 answer
jQuery.load() with AJAX Kontactr form
After seeing many questions about how jQuery.load() handles tags in the content to be loaded, I see that jQuery strips out inline tags. But, I'd like to use Kontactr for the contact page in my site, and the much nicer AJAX embed they have is two…

JustinP8
- 1,353
- 1
- 14
- 33
1
vote
0 answers
Inline script that calls a function in an external script using document.write
Say I have a script called makeFields.js which includes the method
function makeDateControls() {
document.write(/* ... */);
}
In my HTML, I link to that script in the head, like so: