I decided to add a unique feature to my website - a handle in the bottom right corner that users can grab and drag to the left to see how the design adapts to different browser window sizes (Responsive Design).
To implement this, I included the following code in my HTML:
<a id="drag-me" title="Drag me to the left"></a>
The use of the title attribute allows for a helpful tooltip to appear, which is a nice touch.
However, some users seem confused and attempt to grab the red anchor element itself instead of the designated bottom right corner of their browser window.
Are there any suggestions on how to improve this feature?
Any ideas would be greatly appreciated...