You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I attempt to execute a bookmarklet that outputs a string containing the percent sign % using a keyboard shortcut, the execution does not occur. However, when I remove the percent sign from the bookmarklet, it executes correctly with the keyboard shortcut.
Here is the problematic bookmarklet code:
javascript:console.log('hello world!%')
And here is the working version without the percent sign:
javascript:console.log('hello world!')
The text was updated successfully, but these errors were encountered:
When I attempt to execute a bookmarklet that outputs a string containing the percent sign % using a keyboard shortcut, the execution does not occur. However, when I remove the percent sign from the bookmarklet, it executes correctly with the keyboard shortcut.
Here is the problematic bookmarklet code:
javascript:console.log('hello world!%')
And here is the working version without the percent sign:
javascript:console.log('hello world!')
The text was updated successfully, but these errors were encountered: