OK, we have HTML5 / CSS guru's but do we have jQuery ones?
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- OK, we have HTML5 / CSS guru's but do we have jQue...

OK, we have HTML5 / CSS guru's but do we have jQuery ones?
06-01-2015 4:31 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I thought it wouldn't do any harm to ask. I have a button on my web site that when click displays an <input> element for files. In order to select a file the user then of course needs to click the Browse button. Is there a way I can get round this by using jQuery to automatically display the File Selection dialog box for me when the user clicks my 'Upload' button?
In case this helps for control reasons the <input> element is not used inside of a form element.
Re: OK, we have HTML5 / CSS guru's but do we have jQuery ones?
06-01-2015 4:53 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Try this for starters.
You can often answer questions like this by just typing in the keywords in Google - for example, to find this I searched on "html javascript open file dialog"
Kevin
In another browser tab, login into the Plusnet user portal BEFORE clicking the fault & ticket links
Superusers are not staff, but they do have a direct line of communication into the business in order to raise issues, concerns and feedback from the community.
If this post helped, please click the Thumbs Up and if it fixed your issue, please click the This fixed my problem green button below.

Re: OK, we have HTML5 / CSS guru's but do we have jQuery ones?
06-01-2015 4:55 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
$('#upload input[type=file]').click() ;
Does the trick. 🙂
Re: OK, we have HTML5 / CSS guru's but do we have jQuery ones?
06-01-2015 5:02 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator


I have found no end of answers to things I knew nothing about following the above approach. Often you can find practical worked through solutions which you will not find in technical texts.
The big hint is on your other thread...
In another browser tab, login into the Plusnet user portal BEFORE clicking the fault & ticket links
Superusers are not staff, but they do have a direct line of communication into the business in order to raise issues, concerns and feedback from the community.
If this post helped, please click the Thumbs Up and if it fixed your issue, please click the This fixed my problem green button below.
Re: OK, we have HTML5 / CSS guru's but do we have jQuery ones?
13-01-2015 9:32 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Quote from: Townman You can often answer questions like this by just typing in the keywords in Google - for example..............
You should also note that it can frequently lead you a lot of repeatedly misguided and misquoted information unless you bother to double/triple check the accuracy of any information that it may turn up
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- OK, we have HTML5 / CSS guru's but do we have jQue...